mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-17 05:00:17 +00:00
21 lines
275 B
Rust
21 lines
275 B
Rust
mod inner {
|
|
pub trait Bar {
|
|
fn method(&self);
|
|
}
|
|
|
|
pub struct Foo;
|
|
|
|
impl Foo {
|
|
fn method(&self) {}
|
|
}
|
|
|
|
impl Bar for Foo {
|
|
fn method(&self) {}
|
|
}
|
|
}
|
|
|
|
fn main() {
|
|
let foo = inner::Foo;
|
|
foo.method(); //~ ERROR is private
|
|
}
|