| Index: tests/language/string_interpolation1_test.dart
|
| diff --git a/tests/language/string_interpolation1_negative_test.dart b/tests/language/string_interpolation1_test.dart
|
| similarity index 79%
|
| rename from tests/language/string_interpolation1_negative_test.dart
|
| rename to tests/language/string_interpolation1_test.dart
|
| index 15ccfe422918a873b2468c6c39b66dd2e77ba552..4555dd07d96c733454ff91d38c46bd593d363dad 100644
|
| --- a/tests/language/string_interpolation1_negative_test.dart
|
| +++ b/tests/language/string_interpolation1_test.dart
|
| @@ -11,8 +11,9 @@ class A {
|
|
|
| class StringInterpolation1NegativeTest {
|
| // Dollar not followed by "{" or identifier.
|
| - static const DOLLAR = const A("$");
|
| - testMain() {
|
| + static const DOLLAR = const A("$"); /// 01: compile-time error
|
| + static testMain() {
|
| + print(DOLLAR); /// 01: continued
|
| }
|
| }
|
|
|
|
|