rust/tests/ui/issues/issue-3214.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
935 B
Plaintext
Raw Normal View History

2023-09-10 21:06:14 +00:00
error[E0401]: can't use generic parameters from outer item
--> $DIR/issue-3214.rs:3:12
2018-07-15 21:11:54 +00:00
|
LL | fn foo<T>() {
2023-09-10 21:06:14 +00:00
| - type parameter from outer item
LL | struct Foo {
2023-09-10 21:06:14 +00:00
| - help: try introducing a local generic parameter here: `<T>`
2019-03-09 12:03:44 +00:00
LL | x: T,
2023-09-10 21:06:14 +00:00
| ^ use of generic parameter from outer item
2018-07-15 21:11:54 +00:00
error[E0107]: struct takes 0 generic arguments but 1 generic argument was supplied
--> $DIR/issue-3214.rs:6:22
2018-07-15 21:11:54 +00:00
|
LL | impl<T> Drop for Foo<T> {
| ^^^--- help: remove these generics
| |
2021-02-18 20:01:44 +00:00
| expected 0 generic arguments
|
2021-02-18 20:01:44 +00:00
note: struct defined here, with 0 generic parameters
--> $DIR/issue-3214.rs:2:12
|
LL | struct Foo {
| ^^^
2018-07-15 21:11:54 +00:00
error: aborting due to 2 previous errors
2018-07-15 21:11:54 +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`.