]> git.lizzy.rs Git - rust.git/blob - tests/ui/traits/ignore-err-impls.rs
Rollup merge of #105795 - nicholasbishop:bishop-stabilize-efiapi, r=joshtriplett
[rust.git] / tests / ui / traits / ignore-err-impls.rs
1 pub struct S;
2
3 trait Generic<T> {}
4
5 impl<'a, T> Generic<&'a T> for S {}
6 impl Generic<Type> for S {}
7 //~^ ERROR cannot find type `Type` in this scope
8
9 fn main() {}