The following example:
class Main {
static function main() {
TestImpl.test(1);
}
}
TestImpl.hx:
typedef TestImpl<T> = TestImpl_<T>;
class TestImpl_<T> {
@:generic public static function test<T>(arg:T){
trace('works');
}
}
Fails with:
Main.hx:3: characters 4-20 : Type not found : TestImpl_
On latest Haxe. If I take the typedef off, it works again. I think this is a regression
The following example:
TestImpl.hx:Fails with:
On latest Haxe. If I take the typedef off, it works again. I think this is a regression