Ver Fonte

[tests] add

closes #7536
Simon Krajewski há 7 anos atrás
pai
commit
8e1afe8c5f
1 ficheiros alterados com 9 adições e 0 exclusões
  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);
+	}
+}