| 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 | |
| 7 main() { | 5 main() { |
| 8 final f0 = 42; | 6 final f0 = 42; |
| 9 final f1; /// 01: compile-time error | 7 final f1; /// 01: compile-time error |
| 10 final int f2 = 87; | 8 final int f2 = 87; |
| 11 final int f3; /// 02: compile-time error | 9 final int f3; /// 02: compile-time error |
| 12 Expect.equals(42, f0); | 10 Expect.equals(42, f0); |
| 13 Expect.equals(87, f2); | 11 Expect.equals(87, f2); |
| 14 | 12 |
| 15 Expect.equals(42, F0); | 13 Expect.equals(42, F0); |
| 16 Expect.equals(null, F1); /// 03: compile-time error | 14 Expect.equals(null, F1); /// 03: compile-time error |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 : x = C0.X /// 09: continued | 66 : x = C0.X /// 09: continued |
| 69 ; | 67 ; |
| 70 final x = null; | 68 final x = null; |
| 71 } | 69 } |
| 72 | 70 |
| 73 // Check that sub-expressions of binary + are numeric. | 71 // Check that sub-expressions of binary + are numeric. |
| 74 final B0 = 42; | 72 final B0 = 42; |
| 75 final B1 = "Hello"; | 73 final B1 = "Hello"; |
| 76 final B2 = "$B1 $B0"; | 74 final B2 = "$B1 $B0"; |
| 77 final B3 = B0 + B1; /// 10: continued | 75 final B3 = B0 + B1; /// 10: continued |
| OLD | NEW |