blob: 8b3968846c6a9b6c6a55c2e6bcf0cc7dea86190a [file] [log] [blame]
/*
* Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
* for details. All rights reserved. Use of this source code is governed by a
* BSD-style license that can be found in the LICENSE file.
*/
/**
* @assertion abstract bool moveNext()
* Returns whether the [Iterator] has elements left.
* @description Checks that true is returned only if the [Iterator] has elements left.
* @author kaigorodov
*/
import "../../../Utils/expect.dart";
main() {
List a = new List();
a.length = 25476;
Iterator it = a.iterator;
for (var i=0; i < a.length; i++) {
Expect.isTrue(it.moveNext());
}
Expect.isFalse(it.moveNext());
}