mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
17 lines
264 B
Rust
17 lines
264 B
Rust
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
|
|
}
|