]> git.lizzy.rs Git - rust.git/blob - src/test/ui/parser/attr-with-a-semicolon.stderr
Auto merge of #103600 - compiler-errors:early-binder-nits, r=spastorino
[rust.git] / src / test / ui / parser / attr-with-a-semicolon.stderr
1 error: expected item after attributes
2   --> $DIR/attr-with-a-semicolon.rs:1:1
3    |
4 LL | #[derive(Debug, Clone)];
5    | ^^^^^^^^^^^^^^^^^^^^^^^
6    |
7 help: consider removing this semicolon
8    |
9 LL - #[derive(Debug, Clone)];
10 LL + #[derive(Debug, Clone)]
11    |
12
13 error: aborting due to previous error
14