mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
15 lines
222 B
Rust
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
|
|
}
|