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("CTConst4Lib.dart", prefix:"mylib"); | 7 #import("ct_const4_lib.dart", prefix:"mylib"); |
8 | 8 |
9 final A = mylib.B; | 9 final A = mylib.B; |
10 | 10 |
11 main() { | 11 main() { |
12 Expect.equals(1, A); | 12 Expect.equals(1, A); |
13 } | 13 } |
14 | 14 |
OLD | NEW |