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