blob: e805d8f7f4701538ecf0ed675e7be849a653bb8e [file] [log] [blame]
library;
import self as self;
import "dart:core" as core;
static method main() dynamic {
core::int* count = 0;
#L1:
for (core::int* a = 0; a.<(10); a = a.+(1)) {
for (core::int* b = 0; b.<(10); b = b.+(1)) {
count = count.+(1);
if(count.==(27))
break #L1;
}
count = count.+(1);
}
if(!count.==(27))
throw "failed: ${count}";
}