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
None
v7.1.170
Linux
module INTEGERS-SYNTAX imports INT-SYNTAX
syntax Addr ::= r" [\\+|\\-] " [token] syntax Mulx ::= r" [\\*|/] " [token] syntax Exp ::= "(" Exp ")" [bracket] > Int [group(uneg)] > left: Exp Mulx Exp [group(muls), function] | Exp Addr Exp [group(adds), function] syntax priority uneg > muls > adds
endmodule
module INTEGERS imports INTEGERS-SYNTAX imports INT
rule A + B => A +Int B rule A - B => A -Int B rule A * B => A *Int B rule A / B => A /Int B
literally just kompile this file and it'll cause the bug
I expected it to compile successfully
The text was updated successfully, but these errors were encountered:
No branches or pull requests
What component is the issue in?
None
Which command
What K Version?
v7.1.170
Operating System
Linux
K Definitions (If Possible)
module INTEGERS-SYNTAX
imports INT-SYNTAX
endmodule
module INTEGERS
imports INTEGERS-SYNTAX
imports INT
endmodule
Steps to Reproduce
literally just kompile this file and it'll cause the bug
Expected Results
I expected it to compile successfully
The text was updated successfully, but these errors were encountered: