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
unwrap
Describe the bug The following example will hit an unwrap in
rusty/src/validation/variable.rs
Lines 246 to 251 in bca3c31
To Reproduce try to compile with --check:
--check
VAR_GLOBAL y: BOOL; END_VAR FUNCTION main VAR x AT y : SomeUndefinedType; END_VAR END_FUNCTION
Expected behavior A diagnostic with Unknown type: SomeUndefinedType
Unknown type: SomeUndefinedType
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
The following example will hit an unwrap in
rusty/src/validation/variable.rs
Lines 246 to 251 in bca3c31
when the declared type does not exist.
To Reproduce
try to compile with
--check
:Expected behavior
A diagnostic with
Unknown type: SomeUndefinedType
The text was updated successfully, but these errors were encountered: