We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Normally Haxe recognizes recursive definition with Recursive class compile time error. When using generic it leads to stackoverflow error instead.
Recursive class
@:generic class Foo<T> extends Foo<T> { }
On win64 build 4.2.1+bf9ff69 compiler sometimes hard crashed too, but I can't reproduce that with minimal example.
According to try.haxe.org it correctly recognizes the recursion in 3.4.7 but not in any of the 4+ versions including latest dev 2021-03-31 cf61913.
The text was updated successfully, but these errors were encountered:
This was fixed by 8bce1a1
Sorry, something went wrong.
No branches or pull requests
Normally Haxe recognizes recursive definition with
Recursive class
compile time error. When using generic it leads to stackoverflow error instead.On win64 build 4.2.1+bf9ff69 compiler sometimes hard crashed too, but I can't reproduce that with minimal example.
According to try.haxe.org it correctly recognizes the recursion in 3.4.7 but not in any of the 4+ versions including latest dev 2021-03-31 cf61913.
The text was updated successfully, but these errors were encountered: