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
Describe the bug
Type variable do not appear in TModel defs nor uses.
To Reproduce
void typeVar() { println("=== Type variables ==="); tm = typeCheck("&T f(&T t) = t;"); defs = {d.defined | Define d:<_, _, _, typeVarId(), _, _> <- tm.defines}; // No definitions, nor uses print("Defs - of role `typeVarId()`: "); iprintln(defs); uses = tm.useDef o tm.defines<defined, idRole>; print("Uses - of role `typeVarId()`: "); iprintln(uses); println("======================\n"); }
Expected behavior Defs and uses to exist.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
Type variable do not appear in TModel defs nor uses.
To Reproduce
Expected behavior
Defs and uses to exist.
The text was updated successfully, but these errors were encountered: