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 const m0 = const { | 5 const m0 = const {499: 400 + 99}; |
6 499: 400 + 99 | |
7 }; | |
8 const m1 = const { | 6 const m1 = const { |
9 "foo" + "bar": 42 // //# 01: ok | 7 "foo" + "bar": 42 // //# 01: ok |
10 }; | 8 }; |
11 const m2 = const { | 9 const m2 = const { |
12 "foo" * 4: 42 // //# 02: compile-time error | 10 "foo" * 4: 42 // //# 02: compile-time error |
13 }; | 11 }; |
14 const m3 = const { | 12 const m3 = const { |
15 "foo".codeUnitAt(0): 42 // //# 03: compile-time error | 13 "foo".codeUnitAt(0): 42 // //# 03: compile-time error |
16 }; | 14 }; |
17 | 15 |
18 use(x) => x; | 16 use(x) => x; |
19 | 17 |
20 main() { | 18 main() { |
21 use(m0); | 19 use(m0); |
22 use(m1); | 20 use(m1); |
23 use(m2); | 21 use(m2); |
24 use(m3); | 22 use(m3); |
25 } | 23 } |
OLD | NEW |