瀏覽代碼

disable #6630 test for cpp for now

Andy Li 8 年之前
父節點
當前提交
93f1677a19
共有 1 個文件被更改,包括 2 次插入0 次删除
  1. 2 0
      tests/unit/src/unit/issues/Issue6630.hx

+ 2 - 0
tests/unit/src/unit/issues/Issue6630.hx

@@ -1,6 +1,7 @@
 package unit.issues;
 
 class Issue6630 extends unit.Test {
+	#if !cpp
 	static var cls:Dynamic;
 	static inline var HELLO = 'hello';
 
@@ -10,4 +11,5 @@ class Issue6630 extends unit.Test {
 		eq(Reflect.field(Issue6630, 'HELLO'), HELLO);
 		t(Reflect.hasField(Issue6630, 'HELLO'));
 	}
+	#end
 }