rust/tests/ui/traits/method-private.rs
2023-01-11 09:32:08 +00:00

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
}