summaryrefslogtreecommitdiffstats
path: root/src/test/ui/parser/attr-with-a-semicolon.stderr
blob: 0de3490b8ea98b9be7bc76a1d5f5104d51f51faf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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