2018-02-07 21:35:35 -06:00
|
|
|
error[E0091]: type parameter `T` is unused
|
|
|
|
--> $DIR/E0091.rs:11:10
|
|
|
|
|
|
|
|
|
11 | type Foo<T> = u32; //~ ERROR E0091
|
|
|
|
| ^ unused type parameter
|
|
|
|
|
|
|
|
error[E0091]: type parameter `B` is unused
|
|
|
|
--> $DIR/E0091.rs:12:14
|
|
|
|
|
|
|
|
|
12 | type Foo2<A, B> = Box<A>; //~ ERROR E0091
|
|
|
|
| ^ unused type parameter
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
2018-02-19 14:40:25 -06:00
|
|
|
If you want more information on this error, try using "rustc --explain E0091"
|