Browse Source

restrict overload tests to Java/C#

Simon Krajewski 10 years ago
parent
commit
04cddc2c3d
1 changed files with 8 additions and 0 deletions
  1. 8 0
      tests/unit/src/unit/issues/Issue3173.hx

+ 8 - 0
tests/unit/src/unit/issues/Issue3173.hx

@@ -1,6 +1,8 @@
 package unit.issues;
 import haxe.ds.StringMap;
 
+#if (java || cs)
+
 class Issue3173 extends Test
 {
 	public function test()
@@ -31,3 +33,9 @@ private class O<T>
 		return 0;
 	}
 }
+
+#else
+
+class Issue3173 extends Test { }
+
+#end