-
Notifications
You must be signed in to change notification settings - Fork 1.5k
New issue
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
explorer crashes on mismatched operator/operand types, like -true #1249
Comments
Looks like plain package EmptyIdentifier impl; fn Main() -> i32 { |
Type checker code calls InterpExp on function parameter type without first validating the parameter with TypeCheckExp, and InterExp crashes because it assumes negation has an integer type operand and it's actually a Bool |
The text was updated successfully, but these errors were encountered: