summaryrefslogtreecommitdiffstats
path: root/tests/ui/parser/attribute/attr-with-a-semicolon.stderr
blob: b77f30fdb5934e9c88c10a83faddc791d2d4b2ed (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 1 previous error