summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/unnecessary_semicolon.edition2024.stderr
blob: d5ccae7fdf580f1c5ec41f0a08d926815c1ce02e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
error: unnecessary semicolon
  --> tests/ui/unnecessary_semicolon.rs:29: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:35:6
   |
LL |     };
   |      ^ help: remove

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

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

error: aborting due to 4 previous errors