mirror of
https://github.com/rust-lang/rust.git
synced 2026-04-27 18:57:42 +03:00
22 lines
292 B
Rust
22 lines
292 B
Rust
//@ edition:2015
|
|
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
|
|
}
|