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

28 lines
928 B
Plaintext
Raw Normal View History

error[E0401]: can't use generic parameters from outer function
--> $DIR/issue-3214.rs:5:12
2018-07-15 16:11:54 -05:00
|
LL | fn foo<T>() {
| --- - type parameter from outer function
2018-07-15 16:11:54 -05:00
| |
| try adding a local generic parameter in this method instead
LL | struct Foo {
2019-03-09 06:03:44 -06:00
LL | x: T,
| ^ 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
--> $DIR/issue-3214.rs:8: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[E0207]: the type parameter `T` is not constrained by the impl trait, self type, or predicates
--> $DIR/issue-3214.rs:8:10
|
LL | impl<T> Drop for Foo<T> {
| ^ unconstrained type parameter
error: aborting due to 3 previous errors
2018-07-15 16:11:54 -05:00
Some errors have detailed explanations: E0107, E0207, E0401.
2018-08-21 20:12:23 -05:00
For more information about an error, try `rustc --explain E0107`.