blob: 3b932fa13b83310c0942c51d80439e03debf2f95 [file]
library;
//
// Problems in library:
//
// pkg/front_end/testcases/general/for_in_variable_initializer.dart:6:14: Error: The loop variable in a for-each loop can't be initialized.
// Try removing the initializer, or using a different kind of loop.
// for (var l = 1 in List.filled(100, 0)) break;
// ^
//
import self as self;
import "dart:core" as core;
static method test() dynamic {
#L1:
for (core::int l in core::List::filled<core::int>(100, 0))
break #L1;
}