Browse Source

[tests] add

closes #7536
Simon Krajewski 7 năm trước cách đây
mục cha
commit
8e1afe8c5f
1 tập tin đã thay đổi với 9 bổ sung0 xóa
  1. 9 0
      tests/unit/src/unit/issues/Issue7536.hx

+ 9 - 0
tests/unit/src/unit/issues/Issue7536.hx

@@ -0,0 +1,9 @@
+package unit.issues;
+
+class Issue7536 extends unit.Test {
+	function test() {
+      var s:String = null;
+      var url:Dynamic = { query: s }
+      t(url.query == null);
+	}
+}