summaryrefslogtreecommitdiffstats
path: root/src/test/ui/trait-bounds/shadowed-path-in-trait-bound-suggestion.rs
blob: ee6ed0cae671cb111e1d0df19e212897df49e71e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// run-rustfix
#![allow(non_snake_case)]
mod A {
    pub trait Trait {}
    impl Trait for i32 {}
}

mod B {
    pub struct A<H: A::Trait>(pub H); //~ ERROR cannot find trait
}

fn main() {
    let _ = B::A(42);
}