]> git.lizzy.rs Git - rust.git/blob - tests/ui/traits/ignore-err-impls.stderr
Rollup merge of #106701 - ibraheemdev:sync-sender-spin, r=Amanieu
[rust.git] / tests / ui / traits / ignore-err-impls.stderr
1 error[E0412]: cannot find type `Type` in this scope
2   --> $DIR/ignore-err-impls.rs:6:14
3    |
4 LL | impl Generic<Type> for S {}
5    |              ^^^^ not found in this scope
6    |
7 help: you might be missing a type parameter
8    |
9 LL | impl<Type> Generic<Type> for S {}
10    |     ++++++
11
12 error: aborting due to previous error
13
14 For more information about this error, try `rustc --explain E0412`.