-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
oopos
- Loading branch information
Showing
7 changed files
with
216 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,4 +14,6 @@ fn main() { | |
let wha = 1; | ||
let vvv = 1; | ||
let uuu = 1; | ||
let (mut a, mut b) = (1, 2); | ||
for i in 0..1000 {} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,46 @@ | ||
error: this ident is too short (3 <= 3) | ||
error: this ident is too short (3 <= 3) | ||
--> $DIR/min_ident_chars.rs:6:19 | ||
| | ||
LL | use extern_types::Aaa; | ||
| ^^^ | ||
| | ||
= note: `-D clippy::min-ident-chars` implied by `-D warnings` | ||
|
||
error: this ident is too short (3 <= 3) | ||
error: this ident is too short (3 <= 3) | ||
--> $DIR/min_ident_chars.rs:10:5 | ||
| | ||
LL | aaa: Aaa, | ||
| ^^^ | ||
|
||
error: aborting due to 2 previous errors | ||
error: this ident is too short (3 <= 3) | ||
--> $DIR/min_ident_chars.rs:15:9 | ||
| | ||
LL | let vvv = 1; | ||
| ^^^ | ||
|
||
error: this ident is too short (3 <= 3) | ||
--> $DIR/min_ident_chars.rs:16:9 | ||
| | ||
LL | let uuu = 1; | ||
| ^^^ | ||
|
||
error: this ident is too short (1 <= 3) | ||
--> $DIR/min_ident_chars.rs:17:14 | ||
| | ||
LL | let (mut a, mut b) = (1, 2); | ||
| ^ | ||
|
||
error: this ident is too short (1 <= 3) | ||
--> $DIR/min_ident_chars.rs:17:21 | ||
| | ||
LL | let (mut a, mut b) = (1, 2); | ||
| ^ | ||
|
||
error: this ident is too short (1 <= 3) | ||
--> $DIR/min_ident_chars.rs:18:9 | ||
| | ||
LL | for i in 0..1000 {} | ||
| ^ | ||
|
||
error: aborting due to 7 previous errors | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters