2019-02-07 07:59:59 -06:00
|
|
|
error[E0401]: can't use generic parameters from outer function
|
2020-04-15 19:00:23 -05:00
|
|
|
--> $DIR/issue-3214.rs:5:12
|
2018-07-15 16:11:54 -05:00
|
|
|
|
|
|
|
|
LL | fn foo<T>() {
|
2019-04-17 05:19:58 -05:00
|
|
|
| --- - type parameter from outer function
|
2018-07-15 16:11:54 -05:00
|
|
|
| |
|
2019-02-07 07:59:59 -06:00
|
|
|
| try adding a local generic parameter in this method instead
|
2018-12-16 21:21:47 -06:00
|
|
|
LL | struct Foo {
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | x: T,
|
2019-02-07 07:59:59 -06:00
|
|
|
| ^ use of generic parameter from outer function
|
2018-07-15 16:11:54 -05:00
|
|
|
|
2021-01-02 12:45:11 -06:00
|
|
|
error[E0107]: this struct takes 0 type arguments but 1 type argument was supplied
|
|
|
|
--> $DIR/issue-3214.rs:8:22
|
2018-07-15 16:11:54 -05:00
|
|
|
|
|
2018-12-16 21:21:47 -06:00
|
|
|
LL | impl<T> Drop for Foo<T> {
|
2021-01-02 12:45:11 -06:00
|
|
|
| ^^^--- help: remove these generics
|
|
|
|
| |
|
|
|
|
| expected 0 type arguments
|
|
|
|
|
|
|
|
|
note: struct defined here, with 0 type parameters
|
|
|
|
--> $DIR/issue-3214.rs:4:12
|
|
|
|
|
|
|
|
|
LL | struct Foo {
|
|
|
|
| ^^^
|
2018-07-15 16:11:54 -05:00
|
|
|
|
2020-04-15 19:00:23 -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
|
|
|
|
2020-04-15 19:00:23 -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`.
|