2013-08-07 02:11:34 -05:00
|
|
|
// Copyright 2013 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
|
|
|
// aux-build:static_priv_by_default.rs
|
|
|
|
|
2014-02-14 12:10:06 -06:00
|
|
|
extern crate static_priv_by_default;
|
2013-08-07 02:11:34 -05:00
|
|
|
|
|
|
|
mod child {
|
|
|
|
pub mod childs_child {
|
|
|
|
static private: int = 0;
|
|
|
|
pub static public: int = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-10-05 16:44:37 -05:00
|
|
|
fn foo<T>(_: T) {}
|
|
|
|
|
|
|
|
fn test1() {
|
|
|
|
use child::childs_child::private;
|
|
|
|
//~^ ERROR: static `private` is private
|
2013-08-07 02:11:34 -05:00
|
|
|
use child::childs_child::public;
|
2013-10-05 16:44:37 -05:00
|
|
|
|
|
|
|
foo(private);
|
|
|
|
}
|
|
|
|
|
|
|
|
fn test2() {
|
|
|
|
use static_priv_by_default::private;
|
|
|
|
//~^ ERROR: static `private` is private
|
|
|
|
use static_priv_by_default::public;
|
|
|
|
|
|
|
|
foo(private);
|
2013-08-07 02:11:34 -05:00
|
|
|
}
|
2013-10-05 16:44:37 -05:00
|
|
|
|
|
|
|
fn main() {}
|