mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
15 lines
295 B
Plaintext
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
|
|
|