OLD | NEW |
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, 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 // Test that inlining in the compiler works with privacy. | 5 // Test that inlining in the compiler works with privacy. |
6 | 6 |
7 library private4_test; | 7 library private4_test; |
8 | 8 |
| 9 import "package:expect/expect.dart"; |
9 import 'other_library.dart'; | 10 import 'other_library.dart'; |
10 | 11 |
11 main() { | 12 main() { |
12 Expect.equals(42, foo(new A())); | 13 Expect.equals(42, foo(new A())); |
13 Expect.throws(() => foo(new B()), (e) => e is NoSuchMethodError); | 14 Expect.throws(() => foo(new B()), (e) => e is NoSuchMethodError); |
14 } | 15 } |
15 | 16 |
16 class B { | 17 class B { |
17 _bar() => 42; | 18 _bar() => 42; |
18 } | 19 } |
OLD | NEW |