blob: 3e7c8ee7db23aaa7d8d27df377fafd1550105718 [file] [log] [blame]
library test;
import self as self;
import "dart:core" as core;
static method test() dynamic async {
core::String s;
for (core::int x in s) {
}
await for (core::int x in s) {
}
core::int y;
for (final dynamic #t1 in s) {
y = #t1;
}
await for (final dynamic #t2 in s) {
y = #t2;
}
}
static method main() dynamic {}