Browse Source

[tests] add

closes #11007
Simon Krajewski 2 years ago
parent
commit
3d52330714
1 changed files with 8 additions and 0 deletions
  1. 8 0
      tests/unit/src/unit/issues/Issue11007.hx

+ 8 - 0
tests/unit/src/unit/issues/Issue11007.hx

@@ -0,0 +1,8 @@
+package unit.issues;
+
+class Issue11007 extends Test {
+	function test() {
+		var a:Dynamic<Dynamic> = {day: "numeric"};
+		eq("numeric", a.day);
+	}
+}