rust/src/test/ui/issues/issue-3214.stderr

22 lines
745 B
Plaintext
Raw Normal View History

error[E0401]: can't use generic parameters from outer function
2018-12-25 09:56:47 -06:00
--> $DIR/issue-3214.rs:3:12
2018-07-15 16:11:54 -05:00
|
LL | fn foo<T>() {
| --- - type variable from outer function
| |
| try adding a local generic parameter in this method instead
LL | struct Foo {
LL | x: T, //~ ERROR can't use generic parameters from outer function
| ^ use of generic parameter from outer function
2018-07-15 16:11:54 -05:00
2018-08-21 20:12:23 -05:00
error[E0107]: wrong number of type arguments: expected 0, found 1
2018-12-25 09:56:47 -06:00
--> $DIR/issue-3214.rs:6:26
2018-07-15 16:11:54 -05:00
|
LL | impl<T> Drop for Foo<T> {
2018-08-20 06:52:56 -05:00
| ^ unexpected type argument
2018-07-15 16:11:54 -05:00
error: aborting due to 2 previous errors
2018-08-21 20:12:23 -05:00
Some errors occurred: E0107, E0401.
For more information about an error, try `rustc --explain E0107`.