| 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 which has a syntax error. This test is to | 4 // Dart test program which has a syntax error. This test is to |
| 5 // ensure that the resulting parse error message is correctly | 5 // ensure that the resulting parse error message is correctly |
| 6 // displayed without being garbled. | 6 // displayed without being garbled. |
| 7 | 7 |
| 8 class Test { | 8 class Test { |
| 9 static foo() { | 9 static foo() { |
| 10 return "hi | 10 return "hi |
| 11 } | 11 } |
| 12 static testMain() { | 12 static testMain() { |
| 13 List a = {1 : 1}; | 13 List a = {1 : 1}; |
| 14 List b = {1 : 1}; | 14 List b = {1 : 1}; |
| 15 return a == b; | 15 return a == b; |
| 16 } | 16 } |
| 17 } | 17 } |
| 18 | 18 |
| 19 main() { | 19 main() { |
| 20 TestNegativeTest.testMain(); | 20 TestNegativeTest.testMain(); |
| 21 } | 21 } |
| OLD | NEW |