blob: 17603ab05ac3268e65e31d93eebebf0d89f0153d [file] [log] [blame]
library test;
import self as self;
import "dart:core" as core;
static method test(core::int* x, () →* void f) void {
#L1:
switch(x) {
#L2:
case #C1:
{
f.call();
continue #L3;
}
#L3:
case #C2:
{
f.call();
break #L1;
}
}
}
static method main() dynamic {}
constants {
#C1 = 0
#C2 = 1
}