blob: 92b2ed2769a2d70004dd8df1057742fd8e2a7166 [file] [log] [blame]
library;
//
// Problems in library:
//
// pkg/front_end/testcases/general/async_method_with_invalid_type.dart:8:3: Error: 'Bar' isn't a type.
// Bar x;
// ^^^
//
import self as self;
static method foo() dynamic async {
invalid-type x;
for (dynamic y in x.z) {
}
}
static method main() dynamic {}