blob: d30bc06a6c60fc833dd853e33d6f4b4f2057228f [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 Throws Error if [other] is null
* @description Checks that exception is thrown
* @author msyabro
* @reviewer varlax
* @needsreview undocumented
*/
import "../../../Utils/expect.dart";
import "dart:collection";
main() {
try {
Queue<int> list = new Queue.from(null);
Expect.fail("Error is expected");
} on Error catch(e) {}
}