blob: 8374ab7c4377e39636a9e17d59edd6bf990c0d8a [file] [log] [blame]
description(
'Tests that code generation of statement lists properly reference counts registers.'
);
function f()
{
for(; ; i++) {
a = 0;
if (1)
return true;
}
}
shouldBeTrue("f()");