blob: 4f58db1c0e63b3cf55e5287e301addc824ec59cb [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}";
}