-
Notifications
You must be signed in to change notification settings - Fork 13.5k
Suggest renaming or escaping when fixing non-snake-case identifiers which would conflict with keywords #80592
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
bors
merged 3 commits into
rust-lang:master
from
Skynoodle:snake-case-lint-reserved-identifier
Jan 3, 2021
Merged
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
19 changes: 19 additions & 0 deletions
19
src/test/ui/lint/lint-non-snake-case-identifiers-suggestion-reserved.rs
This file contains hidden or 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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
#![warn(unused)] | ||
#![allow(dead_code)] | ||
#![deny(non_snake_case)] | ||
|
||
mod Impl {} | ||
//~^ ERROR module `Impl` should have a snake case name | ||
|
||
fn While() {} | ||
//~^ ERROR function `While` should have a snake case name | ||
|
||
fn main() { | ||
let Mod: usize = 0; | ||
//~^ ERROR variable `Mod` should have a snake case name | ||
//~^^ WARN unused variable: `Mod` | ||
|
||
let Super: usize = 0; | ||
//~^ ERROR variable `Super` should have a snake case name | ||
//~^^ WARN unused variable: `Super` | ||
} |
67 changes: 67 additions & 0 deletions
67
src/test/ui/lint/lint-non-snake-case-identifiers-suggestion-reserved.stderr
This file contains hidden or 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 |
---|---|---|
@@ -0,0 +1,67 @@ | ||
warning: unused variable: `Mod` | ||
--> $DIR/lint-non-snake-case-identifiers-suggestion-reserved.rs:12:9 | ||
| | ||
LL | let Mod: usize = 0; | ||
| ^^^ help: if this is intentional, prefix it with an underscore: `_Mod` | ||
| | ||
note: the lint level is defined here | ||
--> $DIR/lint-non-snake-case-identifiers-suggestion-reserved.rs:1:9 | ||
| | ||
LL | #![warn(unused)] | ||
| ^^^^^^ | ||
= note: `#[warn(unused_variables)]` implied by `#[warn(unused)]` | ||
|
||
warning: unused variable: `Super` | ||
--> $DIR/lint-non-snake-case-identifiers-suggestion-reserved.rs:16:9 | ||
| | ||
LL | let Super: usize = 0; | ||
| ^^^^^ help: if this is intentional, prefix it with an underscore: `_Super` | ||
|
||
error: module `Impl` should have a snake case name | ||
--> $DIR/lint-non-snake-case-identifiers-suggestion-reserved.rs:5:5 | ||
| | ||
LL | mod Impl {} | ||
| ^^^^ | ||
| | ||
note: the lint level is defined here | ||
--> $DIR/lint-non-snake-case-identifiers-suggestion-reserved.rs:3:9 | ||
| | ||
LL | #![deny(non_snake_case)] | ||
| ^^^^^^^^^^^^^^ | ||
help: rename the identifier or convert it to a snake case raw identifier | ||
| | ||
LL | mod r#impl {} | ||
| ^^^^^^ | ||
|
||
error: function `While` should have a snake case name | ||
--> $DIR/lint-non-snake-case-identifiers-suggestion-reserved.rs:8:4 | ||
| | ||
LL | fn While() {} | ||
| ^^^^^ | ||
| | ||
help: rename the identifier or convert it to a snake case raw identifier | ||
| | ||
LL | fn r#while() {} | ||
| ^^^^^^^ | ||
|
||
error: variable `Mod` should have a snake case name | ||
--> $DIR/lint-non-snake-case-identifiers-suggestion-reserved.rs:12:9 | ||
| | ||
LL | let Mod: usize = 0; | ||
| ^^^ | ||
| | ||
help: rename the identifier or convert it to a snake case raw identifier | ||
| | ||
LL | let r#mod: usize = 0; | ||
| ^^^^^ | ||
|
||
error: variable `Super` should have a snake case name | ||
--> $DIR/lint-non-snake-case-identifiers-suggestion-reserved.rs:16:9 | ||
| | ||
LL | let Super: usize = 0; | ||
| ^^^^^ help: rename the identifier | ||
| | ||
= note: `super` cannot be used as a raw identifier | ||
|
||
error: aborting due to 4 previous errors; 2 warnings emitted | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It may be helpful to emit a note along the lines of
super cannot be used as a raw identifier
in this case so the user doesn't fruitlessly try to do so.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good idea, thanks! Added in 750c52a