Cauê Waneck 11 年之前
父節點
當前提交
88f6a124f8
共有 1 個文件被更改,包括 4 次插入3 次删除
  1. 4 3
      tests/unit/src/unit/issues/Issue3466.hx

+ 4 - 3
tests/unit/src/unit/issues/Issue3466.hx

@@ -1,7 +1,8 @@
 package unit.issues;
 
 class Issue3466 extends Test {
-function test() {
-	var d:Dynamic<Int> = {};
-	eq(null, Reflect.field(d,'someField'));
+	function test() {
+		var d:Dynamic<Int> = {};
+		eq(null, Reflect.field(d,'someField'));
+	}
 }