Browse Source

disable test #8118 for flash and neko

Aleksandr Kuzmenko 6 years ago
parent
commit
80cfd65b34
1 changed files with 2 additions and 0 deletions
  1. 2 0
      tests/unit/src/unit/issues/Issue8118.hx

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

@@ -1,9 +1,11 @@
 package unit.issues;
 
 class Issue8118 extends unit.Test {
+#if !(neko || flash)
 	static var v:RootEnum;
 	function test() {
 		v = A(10);
 		eq(10, switch v { case A(i): i; });
 	}
+#end
 }