]> git.lizzy.rs Git - rust.git/blob - tests/ui/error-codes/E0091.stderr
Rollup merge of #106605 - notriddle:notriddle/outdated-rustbook, r=GuillaumeGomez
[rust.git] / tests / ui / error-codes / E0091.stderr
1 error[E0091]: type parameter `T` is unused
2   --> $DIR/E0091.rs:1:10
3    |
4 LL | type Foo<T> = u32;
5    |          ^ unused type parameter
6
7 error[E0091]: type parameter `B` is unused
8   --> $DIR/E0091.rs:2:14
9    |
10 LL | type Foo2<A, B> = Box<A>;
11    |              ^ unused type parameter
12
13 error: aborting due to 2 previous errors
14
15 For more information about this error, try `rustc --explain E0091`.