rust/tests/ui/derives/issue-43023.stderr

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

30 lines
914 B
Plaintext
Raw Normal View History

error[E0774]: `derive` may only be applied to `struct`s, `enum`s and `union`s
2018-12-25 09:56:47 -06:00
--> $DIR/issue-43023.rs:4:5
2018-07-15 16:11:54 -05:00
|
LL | #[derive(Debug)]
| ^^^^^^^^^^^^^^^^ not applicable here
LL | / fn f() {
LL | | file!();
LL | | }
| |_____- not a `struct`, `enum` or `union`
2018-07-15 16:11:54 -05:00
error[E0774]: `derive` may only be applied to `struct`s, `enum`s and `union`s
2018-12-25 09:56:47 -06:00
--> $DIR/issue-43023.rs:11:5
2018-07-15 16:11:54 -05:00
|
2019-03-09 06:03:44 -06:00
LL | #[derive(Debug)]
| ^^^^^^^^^^^^^^^^ not applicable here
LL | fn f();
| ------- not a `struct`, `enum` or `union`
2018-07-15 16:11:54 -05:00
error[E0774]: `derive` may only be applied to `struct`s, `enum`s and `union`s
2018-12-25 09:56:47 -06:00
--> $DIR/issue-43023.rs:16:5
2018-07-15 16:11:54 -05:00
|
2019-03-09 06:03:44 -06:00
LL | #[derive(Debug)]
| ^^^^^^^^^^^^^^^^ not applicable here
LL | type F;
| ------- not a `struct`, `enum` or `union`
2018-07-15 16:11:54 -05:00
error: aborting due to 3 previous errors
2020-09-05 07:55:15 -05:00
For more information about this error, try `rustc --explain E0774`.