]> git.lizzy.rs Git - rust.git/blob - src/test/ui/error-codes/E0091.stderr
Rollup merge of #48005 - panicbit:env_unimpl_send_sync, r=alexcrichton
[rust.git] / src / test / ui / error-codes / E0091.stderr
1 error[E0091]: type parameter `T` is unused
2   --> $DIR/E0091.rs:11:10
3    |
4 11 | type Foo<T> = u32; //~ ERROR E0091
5    |          ^ unused type parameter
6
7 error[E0091]: type parameter `B` is unused
8   --> $DIR/E0091.rs:12:14
9    |
10 12 | type Foo2<A, B> = Box<A>; //~ ERROR E0091
11    |              ^ unused type parameter
12
13 error: aborting due to 2 previous errors
14