blob: fe30cf85d23028a6ed62ea452e85dc5d439fa182 [file] [log] [blame] [edit]
//@ 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
}