Ver Fonte

disable #6630 test for cpp for now

Andy Li há 8 anos atrás
pai
commit
93f1677a19
1 ficheiros alterados com 2 adições e 0 exclusões
  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
 }