| Index: tests/language/src/StringInterpolate2Test.dart
|
| diff --git a/tests/language/src/StringInterpolate2Test.dart b/tests/language/src/StringInterpolate2Test.dart
|
| index 3d7f06e5142ab308980e949c13ff64b3ff9fa414..144ff240fbd3c1bed2513495d9dbce2e5ec80b97 100644
|
| --- a/tests/language/src/StringInterpolate2Test.dart
|
| +++ b/tests/language/src/StringInterpolate2Test.dart
|
| @@ -6,10 +6,13 @@
|
|
|
| class StringInterpolate2Test {
|
|
|
| - static final F1 = "1 + 5 = ${1+5}";
|
| + // String interpolation not valid on compile time constants
|
| + // static final F1 = "1 + 5 = ${1+5}";
|
|
|
| static void testMain() {
|
|
|
| + var F1 = "1 + 5 = ${1+5}";
|
| +
|
| Expect.equals("1 + 5 = 6", F1);
|
|
|
| var fib = [1, 1, 2, 3, 5, 8, 13, 21];
|
|
|