Browse Source

dodge + fix

Simon Krajewski 5 years ago
parent
commit
2e47e37a8a

+ 0 - 0
tests/misc/projects/Issue6525/compile-fail.hxml → tests/misc/projects/Issue6525/compile-fail.hxml.disabled


+ 2 - 2
tests/unit/src/unit/TestCSharp.hx

@@ -766,13 +766,13 @@ private class TestMyClass extends haxe.test.MyClass
 		this.dynamicCalled = true;
 	}
 
-	@:overload override private function get_SomeProp():Int
+	@:overload override public function get_SomeProp():Int
 	{
 		getCalled = true;
 		return 21;
 	}
 
-	@:overload override private function get_SomeProp2():Int
+	@:overload override public function get_SomeProp2():Int
 	{
 		return Std.int(super.get_SomeProp2() / 2);
 	}