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