| 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 final m1 = const { | 5 final m1 = const { |
| 6 499: 400 + 99 /// 01: compile-time error | 6 499: 400 + 99 /// 01: compile-time error |
| 7 }; | 7 }; |
| 8 final m2 = const { | 8 final m2 = const { |
| 9 "foo" + "bar": 42 /// 02: compile-time error | 9 "foo" + "bar": 42 /// 02: compile-time error |
| 10 }; | 10 }; |
| 11 | 11 |
| 12 use(x) => x; | 12 use(x) => x; |
| 13 | 13 |
| 14 main() { | 14 main() { |
| 15 use(m1); | 15 use(m1); |
| 16 use(m2); | 16 use(m2); |
| 17 } | 17 } |
| OLD | NEW |