blob: bcd06a8ac022c15402ae7f48a72b3906745f9596 [file] [log] [blame]
library;
//
// Problems in library:
//
// pkg/front_end/testcases/general/error_recovery/for_in_with_colon.dart:6:13: Error: For-in loops use 'in' rather than a colon.
// Try replacing the colon with the keyword 'in'.
// for(int i : [1, 2, 3]) {
// ^
//
import self as self;
import "dart:core" as core;
static method main() dynamic {
{
core::Iterator<core::int*>* :sync-for-iterator = <core::int*>[1, 2, 3].{core::Iterable::iterator};
for (; :sync-for-iterator.{core::Iterator::moveNext}(); ) {
core::int* i = :sync-for-iterator.{core::Iterator::current};
{
core::print(i);
}
}
}
}