Closed djrieger closed 9 years ago
While the following code works just fine:
while (2 < 10) { System.out.println(1); }
while statements with empty bodies such as while (2 < 10) { } result in this verification warning:
while (2 < 10) { }
Verify warning: could not find any memory chain in graph main[62]
while (2 < 10) { } causes the warning to be printed but while (false) { } works fine.
while (false) { }
It seems to be fixed. Can we close this?
Not fixed yet as of v0.5
While the following code works just fine:
while statements with empty bodies such as
while (2 < 10) { }
result in this verification warning: