OLD | NEW |
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file |
2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
4 // Dart test program testing that the interpolated identifier does not start | 4 // Dart test program testing that the interpolated identifier does not start |
5 // with '$'. | 5 // with '$'. |
6 | 6 |
7 class StringInterpolate1NegativeTest { | 7 class StringInterpolate1NegativeTest { |
8 | 8 |
9 static testMain() { | 9 static testMain() { |
10 var $x = 1; | 10 var $x = 1; |
11 var s = "eins und $$x macht zwei."; | 11 var s = "eins und $$x macht zwei."; |
12 print(s); | 12 print(s); |
13 } | 13 } |
14 | 14 |
15 } | 15 } |
16 | 16 |
17 main() { | 17 main() { |
18 StringInterpolate1NegativeTest.testMain(); | 18 StringInterpolate1NegativeTest.testMain(); |
19 } | 19 } |
OLD | NEW |