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

22 lines
734 B
Plaintext
Raw Normal View History

2018-07-15 16:11:54 -05:00
error[E0401]: can't use type parameters from outer function
--> $DIR/issue-3214.rs:13:12
|
LL | fn foo<T>() {
| --- - type variable from outer function
| |
| try adding a local type parameter in this method instead
LL | struct foo {
LL | x: T, //~ ERROR can't use type parameters from outer function
| ^ use of type variable from outer function
2018-08-21 20:12:23 -05:00
error[E0107]: wrong number of type arguments: expected 0, found 1
2018-08-20 06:52:56 -05:00
--> $DIR/issue-3214.rs:16: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`.