Index: tests/language/src/ListLiteral2NegativeTest.dart |
diff --git a/tests/language/src/ListLiteral2NegativeTest.dart b/tests/language/src/ListLiteral2NegativeTest.dart |
deleted file mode 100644 |
index 23ada38423ab031340cf9263ef2631a9b29b707e..0000000000000000000000000000000000000000 |
--- a/tests/language/src/ListLiteral2NegativeTest.dart |
+++ /dev/null |
@@ -1,22 +0,0 @@ |
-// 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. |
-// VMOptions=--enable_type_checks |
-// |
-// Dart test program const map literals. |
- |
-class ListLiteral2NegativeTest<T> { |
- test() { |
- try { |
- var m = const <T>[0, 1]; // Type parameter is not allowed with const. |
- } catch (TypeError error) { |
- } |
- } |
-} |
- |
-main() { |
- var t = new ListLiteral2NegativeTest<int>(); |
- t.test(); |
-} |
- |
- |