2019-02-07 13:59:59 +00:00
|
|
|
error[E0401]: can't use generic parameters from outer function
|
2021-04-03 11:05:11 +00:00
|
|
|
--> $DIR/issue-3214.rs:3:12
|
2018-07-15 21:11:54 +00:00
|
|
|
|
|
|
|
|
LL | fn foo<T>() {
|
2022-07-14 13:09:30 +00:00
|
|
|
| - type parameter from outer function
|
2018-12-17 03:21:47 +00:00
|
|
|
LL | struct Foo {
|
2022-07-14 13:09:30 +00:00
|
|
|
| - help: try using a local generic parameter instead: `<T>`
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | x: T,
|
2019-02-07 13:59:59 +00:00
|
|
|
| ^ use of generic parameter from outer function
|
2018-07-15 21:11:54 +00:00
|
|
|
|
2021-02-18 20:01:44 +00:00
|
|
|
error[E0107]: this struct takes 0 generic arguments but 1 generic argument was supplied
|
2021-04-03 11:05:11 +00:00
|
|
|
--> $DIR/issue-3214.rs:6:22
|
2018-07-15 21:11:54 +00:00
|
|
|
|
|
2018-12-17 03:21:47 +00:00
|
|
|
LL | impl<T> Drop for Foo<T> {
|
2021-01-02 18:45:11 +00:00
|
|
|
| ^^^--- help: remove these generics
|
|
|
|
| |
|
2021-02-18 20:01:44 +00:00
|
|
|
| expected 0 generic arguments
|
2021-01-02 18:45:11 +00:00
|
|
|
|
|
2021-02-18 20:01:44 +00:00
|
|
|
note: struct defined here, with 0 generic parameters
|
2021-04-03 11:05:11 +00:00
|
|
|
--> $DIR/issue-3214.rs:2:12
|
2021-01-02 18:45:11 +00:00
|
|
|
|
|
|
|
|
LL | struct Foo {
|
|
|
|
| ^^^
|
2018-07-15 21:11:54 +00:00
|
|
|
|
2022-01-12 22:41:28 +00:00
|
|
|
error: aborting due to 2 previous errors
|
2018-07-15 21:11:54 +00:00
|
|
|
|
2022-01-12 22:41:28 +00:00
|
|
|
Some errors have detailed explanations: E0107, E0401.
|
2018-08-22 01:12:23 +00:00
|
|
|
For more information about an error, try `rustc --explain E0107`.
|