Index: tests/language/src/TestNegativeTest.dart |
diff --git a/tests/language/src/TestNegativeTest.dart b/tests/language/src/TestNegativeTest.dart |
deleted file mode 100644 |
index 831d9ddc76ac2aa51fc14c4e0c8c9f684c80fc68..0000000000000000000000000000000000000000 |
--- a/tests/language/src/TestNegativeTest.dart |
+++ /dev/null |
@@ -1,21 +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. |
-// Dart test program which has a syntax error. This test is to |
-// ensure that the resulting parse error message is correctly |
-// displayed without being garbled. |
- |
-class Test { |
- static foo() { |
- return "hi |
- } |
- static testMain() { |
- List a = {1 : 1}; |
- List b = {1 : 1}; |
- return a == b; |
- } |
-} |
- |
-main() { |
- TestNegativeTest.testMain(); |
-} |