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
|
|
|
|
|
2013-10-05 16:44:37 -05:00
|
|
|
#[no_std]; // helps if debugging resolve
|
2013-08-07 02:11:34 -05:00
|
|
|
|
|
|
|
extern mod static_priv_by_default;
|
|
|
|
|
|
|
|
fn foo<T>() {}
|
|
|
|
|
|
|
|
#[start]
|
2013-10-05 16:44:37 -05:00
|
|
|
fn main(_: int, _: **u8) -> int {
|
2013-08-07 02:11:34 -05:00
|
|
|
// Actual public items should be public
|
|
|
|
static_priv_by_default::a;
|
|
|
|
static_priv_by_default::b;
|
|
|
|
static_priv_by_default::c;
|
|
|
|
foo::<static_priv_by_default::d>();
|
|
|
|
|
|
|
|
// publicly re-exported items should be available
|
|
|
|
static_priv_by_default::bar::e;
|
|
|
|
static_priv_by_default::bar::f;
|
|
|
|
static_priv_by_default::bar::g;
|
|
|
|
foo::<static_priv_by_default::bar::h>();
|
|
|
|
|
|
|
|
// private items at the top should be inaccessible
|
|
|
|
static_priv_by_default::i;
|
2013-10-05 16:44:37 -05:00
|
|
|
//~^ ERROR: static `i` is private
|
2013-08-07 02:11:34 -05:00
|
|
|
static_priv_by_default::j;
|
2013-10-05 16:44:37 -05:00
|
|
|
//~^ ERROR: function `j` is private
|
2013-08-07 02:11:34 -05:00
|
|
|
static_priv_by_default::k;
|
2013-10-05 16:44:37 -05:00
|
|
|
//~^ ERROR: struct `k` is private
|
2013-08-07 02:11:34 -05:00
|
|
|
foo::<static_priv_by_default::l>();
|
2013-10-05 16:44:37 -05:00
|
|
|
//~^ ERROR: type `l` is private
|
2013-08-07 02:11:34 -05:00
|
|
|
|
|
|
|
// public items in a private mod should be inaccessible
|
|
|
|
static_priv_by_default::foo::a;
|
2013-10-05 16:44:37 -05:00
|
|
|
//~^ ERROR: static `a` is private
|
2013-08-07 02:11:34 -05:00
|
|
|
static_priv_by_default::foo::b;
|
2013-10-05 16:44:37 -05:00
|
|
|
//~^ ERROR: function `b` is private
|
2013-08-07 02:11:34 -05:00
|
|
|
static_priv_by_default::foo::c;
|
2013-10-05 16:44:37 -05:00
|
|
|
//~^ ERROR: struct `c` is private
|
2013-08-07 02:11:34 -05:00
|
|
|
foo::<static_priv_by_default::foo::d>();
|
2013-10-05 16:44:37 -05:00
|
|
|
//~^ ERROR: type `d` is private
|
2013-08-07 02:11:34 -05:00
|
|
|
|
|
|
|
3
|
|
|
|
}
|