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