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
1. Describe the bug Rule AA0139 Possible overflow assigning 'Text' to 'Code[10]' does not fire when assigning a compound text to code.
AA0139 Possible overflow assigning 'Text' to 'Code[10]'
2. To Reproduce
procedure MyTest() var Code10: Code[10]; Text: Text; begin Code10 := Text; // fires AA0139 Code10 := Code10 + Text; // no AA0139 end;
3. Expected behavior Rule AA0139 should fire on Code10 := Code10 + Text;
Code10 := Code10 + Text;
4. Actual behavior Rule AA0139 is not triggered.
5. Versions:
The text was updated successfully, but these errors were encountered:
No branches or pull requests
1. Describe the bug
Rule
AA0139 Possible overflow assigning 'Text' to 'Code[10]'
does not fire when assigning a compound text to code.2. To Reproduce
3. Expected behavior
Rule AA0139 should fire on
Code10 := Code10 + Text;
4. Actual behavior
Rule AA0139 is not triggered.
5. Versions:
The text was updated successfully, but these errors were encountered: