blob: 6a16d627db4c7b71ff02311bd7748ab64c86d2ae [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 private declarations are accessible to code within
* the same library.
* @author vasya
* @reviewer msyabro
* @reviewer rodionov
*/
import "private_access_t02_lib.dart" as lib;
main() {
lib.foo();
}