| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, 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 | 4 |
| 5 import "package:expect/expect.dart"; |
| 6 |
| 5 const x = "foo"; | 7 const x = "foo"; |
| 6 const y = "foo"; | 8 const y = "foo"; |
| 7 const g1 = x | 9 const g1 = x |
| 8 + "bar" /// 01: compile-time error | 10 + "bar" /// 01: compile-time error |
| 9 ; | 11 ; |
| 10 const g2 = x | 12 const g2 = x |
| 11 + null /// 02: compile-time error | 13 + null /// 02: compile-time error |
| 12 ; | 14 ; |
| 13 const g3 = x | 15 const g3 = x |
| 14 + 499 /// 03: compile-time error | 16 + 499 /// 03: compile-time error |
| (...skipping 22 matching lines...) Expand all Loading... |
| 37 Expect.isTrue(g9); | 39 Expect.isTrue(g9); |
| 38 use(g1); | 40 use(g1); |
| 39 use(g2); | 41 use(g2); |
| 40 use(g3); | 42 use(g3); |
| 41 use(g4); | 43 use(g4); |
| 42 use(g5); | 44 use(g5); |
| 43 use(g6); | 45 use(g6); |
| 44 use(g7); | 46 use(g7); |
| 45 use(g8); | 47 use(g8); |
| 46 } | 48 } |
| OLD | NEW |