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
Following on from this: #5660
If we make I a generic interface then we get a very bad error message
I
nullType.slang:
nullType.slang
import nullTypeModule; struct S { } extension S : I<float> { }
nullTypeModule.slang:
nullTypeModule.slang
interface I<float> { }
slangc -stage compute tests/bugs/nullTypeModule.slang tests/bugs/nullType.slang
(0): error 30060: expected a type, got a '<null>'
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Following on from this: #5660
If we make
I
a generic interface then we get a very bad error messagenullType.slang
:nullTypeModule.slang
:slangc -stage compute tests/bugs/nullTypeModule.slang tests/bugs/nullType.slang
The text was updated successfully, but these errors were encountered: