about summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/unnecessary_semicolon.stderr
blob: e6bf36e81e886f8e5c5fdab81d6e970ef05ffa78 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
error: unnecessary semicolon
  --> tests/ui/unnecessary_semicolon.rs:24:6
   |
LL |     };
   |      ^ help: remove
   |
   = note: `-D clippy::unnecessary-semicolon` implied by `-D warnings`
   = help: to override `-D warnings` add `#[allow(clippy::unnecessary_semicolon)]`

error: unnecessary semicolon
  --> tests/ui/unnecessary_semicolon.rs:30:6
   |
LL |     };
   |      ^ help: remove

error: aborting due to 2 previous errors