Open
Description
CBMC version: N/A.
Operating system: N/A.
// test.c
int main()
{
int a;
for (int i = 0; i < a; i++)
{
a++;
}
}
Exact command line resulting in the issue: cbmc test.c
What behaviour did you expect: CBMC would throw and error for loops without a bound instead of keeping running forever.
What happened instead: CBMC keeps running forever.