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
Description If a type name equals variable name then klee file cannot be compiled in some cases.
Example
typedef struct { int fld; } str; int cas(str *str, int val, int new_val) { if (str && str->fld == val) { str->fld = new_val; return 1; } return 0; }
To Reproduce Steps to reproduce the behavior:
cas
Expected behavior Tests are supposed to be generated.
Actual behavior Couldn't compile klee file.
Couldn't compile klee file
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description
If a type name equals variable name then klee file cannot be compiled in some cases.
Example
To Reproduce
Steps to reproduce the behavior:
cas
functionExpected behavior
Tests are supposed to be generated.
Actual behavior
Couldn't compile klee file
.The text was updated successfully, but these errors were encountered: