blob: 9e0437c46f4bdd826f7f79373826837ed542bef5 [file] [log] [blame]
pub mod test {
pub struct A;
pub struct B;
pub struct Foo<T>(T);
impl Foo<A> {
fn foo() {}
}
impl Foo<B> {
fn foo() {}
}
}
fn main() {
test::Foo::<test::B>::foo(); //~ ERROR associated function `foo` is private
}