summaryrefslogtreecommitdiffstats
path: root/src/test/ui/shadowed/shadowed-trait-methods.rs
blob: f9c25d9791314c352ce3cc0f4073ef793a2747d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Test that methods from shadowed traits cannot be used

mod foo {
    pub trait T { fn f(&self) {} }
    impl T for () {}
}

mod bar { pub use foo::T; }

fn main() {
    pub use bar::*;
    struct T;
    ().f() //~ ERROR no method
}