]> git.lizzy.rs Git - rust.git/blob - src/test/ui/error-codes/E0091.stderr
Merge commit '370c397ec9169809e5ad270079712e0043514240' into sync_cg_clif-2022-03-20
[rust.git] / src / test / 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`.