blob: 021b41978b4660e4f04f6aeb3ed904707dbf0b8f [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 A for statement of the form for (varOrType? id in e) s
* is equivalent to the following code:
* var n0 = e.iterator;
* while (n0.moveNext()) {
* varOrType? id = n0.current;
* s
* }
* where n0 is an identifier that does not occur anywhere in the program.
* @description Checks that a [NoSuchMethodError] is thrown if the type of e
* does not implement [Iterable].
* @author vasya
* @reviewer rodionov
* @reviewer iefremov
*/
import "../../../Utils/expect.dart";
class A {}
void check(var e) {
try {
for (var id in e);
Expect.fail("NoSuchMethodError expected");
} on NoSuchMethodError catch(ok) {}
try {
for (dynamic id in e);
Expect.fail("NoSuchMethodError expected");
} on NoSuchMethodError catch(ok) {}
try {
var id;
for (id in e);
Expect.fail("NoSuchMethodError expected");
} on NoSuchMethodError catch(ok) {}
}
main() {
check(1234567);
check("string");
check(true);
check(new A());
}