blob: 30c3ce7617520ea91121506904903bacf7119a6b [file] [log] [blame]
/*
* Copyright (c) 2011, 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.
*/
/**
* @assertion Libraries are units of privacy. A private declaration declared within a library
* L can only be accessed by code within L. Any attempt to access a private member declaration
* from outside L will cause a method, getter or setter lookup failure.
* @description Checks that an attempt to access a private static member from outside L results
* in a run-time error.
* @static-warning
* @author vasya
* @reviewer msyabro
* @reviewer rodionov
*/
import "../../Utils/expect.dart";
import "13_Libraries_and_Scripts_A05_t03_lib.dart" as lib;
main() {
try {
lib.C._x; /// static type warning '_foo' is private and not defined in this library
Expect.fail('NoSuchMethodError is expected');
} on NoSuchMethodError catch(e) {}
}