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'));
+	}
 }