300b223a64
R=ngeoffray@google.com Review URL: https://codereview.chromium.org//11859031 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@17280 260f80e4-7a28-3924-810f-c04153c831b5
19 lines
473 B
Dart
19 lines
473 B
Dart
// Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
|
|
// for details. All rights reserved. Use of this source code is governed by a
|
|
// BSD-style license that can be found in the LICENSE file.
|
|
|
|
// Test that inlining in the compiler works with privacy.
|
|
|
|
library private4_test;
|
|
|
|
import 'other_library.dart';
|
|
|
|
main() {
|
|
Expect.equals(42, foo(new A()));
|
|
Expect.throws(() => foo(new B()), (e) => e is NoSuchMethodError);
|
|
}
|
|
|
|
class B {
|
|
_bar() => 42;
|
|
}
|