Index: tests/language/src/StringInterpolation1NegativeTest.dart |
diff --git a/tests/language/src/StringInterpolation1NegativeTest.dart b/tests/language/src/StringInterpolation1NegativeTest.dart |
deleted file mode 100644 |
index fe6f8c920687ca6b78ff81f05cff08e4a2556d8a..0000000000000000000000000000000000000000 |
--- a/tests/language/src/StringInterpolation1NegativeTest.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. |
- |
-// A dollar must be followed by a "{" or an identifier. |
- |
-class A { |
- final String str; |
- const A(this.str); |
-} |
- |
-class StringInterpolation1NegativeTest { |
- // Dollar not followed by "{" or identifier. |
- static final DOLLAR = const A("$"); |
- testMain() { |
- } |
-} |
- |
-main() { |
- StringInterpolation1NegativeTest.testMain(); |
-} |