rust/tests/ui/parser/attr-with-a-semicolon.stderr
2023-01-11 09:32:08 +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