blob: 1e157c0ffc91ea2dedaa4410f7c27699f49f5d4f [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::_GrowableList::_literal3<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);
}
}
}
}