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
Currently, the following program compiles just fine:
comp Foo<'G: 1>() -> () {} comp Main<'G: 1>( go: interface['G], ) -> () { M := new Foo; m0 := M<'G>(); m1 := M<'G>(); }
Whereas it shouldn't as M is invoked too often.
M
This seems like a much simpler example #76 that is still incorrectly passing.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently, the following program compiles just fine:
Whereas it shouldn't as
M
is invoked too often.This seems like a much simpler example #76 that is still incorrectly passing.
The text was updated successfully, but these errors were encountered: