blob: 2f6454288ae6884a9e731e62f60d0874ccf0c27c [file] [log] [blame]
// Tests that inherited visibility applies to methods.
mod a {
pub struct Foo;
impl Foo {
fn f(self) {}
}
}
fn main() {
let x = a::Foo;
x.f(); //~ ERROR associated function `f` is private
}