blob: a3b139f73805d76ba7ac033c0243c29c7ec4ba23 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
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:57:6
|
LL | };
| ^ help: remove
error: aborting due to 3 previous errors
|