rust/tests/ui/trait-bounds/shadowed-path-in-trait-boun...

17 lines
227 B
Rust

//@ run-rustfix
#![allow(non_snake_case)]
mod A {
pub trait Trait {}
impl Trait for i32 {}
}
mod B {
use A::Trait;
pub struct A<H: Trait>(pub H); //~ ERROR cannot find trait
}
fn main() {
let _ = B::A(42);
}