Index: tests/language/src/WrongNumberTypeArgumentsTest.dart |
diff --git a/tests/language/src/WrongNumberTypeArgumentsTest.dart b/tests/language/src/WrongNumberTypeArgumentsTest.dart |
deleted file mode 100644 |
index efb209962d78467cb4711b76fd6f9aa6aa10ff23..0000000000000000000000000000000000000000 |
--- a/tests/language/src/WrongNumberTypeArgumentsTest.dart |
+++ /dev/null |
@@ -1,11 +0,0 @@ |
-// Copyright (c) 2012, 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. |
- |
-// Map takes 2 type arguments. |
-Map<String> foo; /// 00: static type warning |
- |
-main() { |
- foo = null; /// 00: continued |
- var bar = new Map<String>(); /// 01: compile-time error |
-} |