OLD | NEW |
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2011, 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 // Check compile-time constant library references with prefixes | 4 // Check compile-time constant library references with prefixes |
5 | 5 |
6 library CTConst4Test; | 6 library CTConst4Test; |
| 7 import "package:expect/expect.dart"; |
7 import "ct_const4_lib.dart" as mylib; | 8 import "ct_const4_lib.dart" as mylib; |
8 | 9 |
9 const A = mylib.B; | 10 const A = mylib.B; |
10 | 11 |
11 main() { | 12 main() { |
12 Expect.equals(1, A); | 13 Expect.equals(1, A); |
13 } | 14 } |
14 | 15 |
OLD | NEW |