blob: 6d5389aaca150a21783601251dd0fc1fe7186f19 [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 Fails gracefully if supplied with an argument of a wrong type.
* @description Tries to pass various wrong parameters to the method.
* @static-warning
* @author iefremov
*/
library addAll_A03_t01;
import "../../../Utils/expect.dart";
import "dart:collection";
test(Queue create([Iterable content])) {
Expect.throws(() => create().addAll(1)); /// static type warning
Expect.throws(() => create().addAll(1.1)); /// static type warning
Expect.throws(() => create().addAll("")); /// static type warning
}