浏览代码

[tests] add

closes #7536
Simon Krajewski 7 年之前
父节点
当前提交
8e1afe8c5f
共有 1 个文件被更改,包括 9 次插入0 次删除
  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);
+	}
+}