rust/tests/ui/privacy/private-method-inherited.rs
2023-01-11 09:32:08 +00:00

15 lines
222 B
Rust

// 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
}