rust/tests/ui/parser/attribute/attr-with-a-semicolon.stderr
2023-10-09 19:24:05 +00:00

15 lines
295 B
Plaintext

error: expected item after attributes
--> $DIR/attr-with-a-semicolon.rs:1:1
|
LL | #[derive(Debug, Clone)];
| ^^^^^^^^^^^^^^^^^^^^^^^
|
help: consider removing this semicolon
|
LL - #[derive(Debug, Clone)];
LL + #[derive(Debug, Clone)]
|
error: aborting due to previous error