mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 05:04:23 +00:00
13 lines
188 B
Rust
13 lines
188 B
Rust
mod inner {
|
|
pub struct Foo;
|
|
|
|
impl Foo {
|
|
fn method(&self) {}
|
|
}
|
|
}
|
|
|
|
fn main() {
|
|
let foo = inner::Foo;
|
|
foo.method(); //~ ERROR method `method` is private [E0624]
|
|
}
|