浏览代码

[tests] add

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