rust/src/test/ui/privacy/restricted/lookup-ignores-private.rs

35 lines
641 B
Rust
Raw Normal View History

// compile-pass
2016-04-10 06:52:25 -05:00
#![allow(warnings)]
mod foo {
pub use foo::bar::S;
mod bar {
#[derive(Default)]
pub struct S {
2017-03-07 17:50:13 -06:00
pub(in foo) x: i32,
2016-04-10 06:52:25 -05:00
}
impl S {
2017-03-07 17:50:13 -06:00
pub(in foo) fn f(&self) -> i32 { 0 }
2016-04-10 06:52:25 -05:00
}
pub struct S2 {
pub(crate) x: bool,
}
impl S2 {
pub(crate) fn f(&self) -> bool { false }
}
impl ::std::ops::Deref for S {
type Target = S2;
fn deref(&self) -> &S2 { unimplemented!() }
}
}
}
fn main() {
2016-04-10 06:52:25 -05:00
let s = foo::S::default();
let _: bool = s.x;
let _: bool = s.f();
}