rust/src/test/ui/traits/trait-method-private.rs
2018-12-25 21:08:33 -07:00

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