rust/src/test/ui/error-codes/E0091.stderr

16 lines
437 B
Plaintext
Raw Normal View History

2018-02-07 21:35:35 -06:00
error[E0091]: type parameter `T` is unused
--> $DIR/E0091.rs:11:10
|
2018-02-22 18:42:32 -06:00
LL | type Foo<T> = u32; //~ ERROR E0091
2018-02-07 21:35:35 -06:00
| ^ unused type parameter
error[E0091]: type parameter `B` is unused
--> $DIR/E0091.rs:12:14
|
2018-02-22 18:42:32 -06:00
LL | type Foo2<A, B> = Box<A>; //~ ERROR E0091
2018-02-07 21:35:35 -06:00
| ^ 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"