Lint against leading 0 in integer literals
A literal like 0111 looks like an octal literal in C, but is actually decimal in Rust (octal would be0o111). This is a footgun, and so seems like something that could be trivially checked for.
(I suppose this could be a "clippy" lint, but that seems like it would lose most of the benefit: it seems to me that most people who encounter this will be just starting out, not invested in running external, third-party commands using nightly.)
A literal like
0111looks like an octal literal in C, but is actually decimal in Rust (octal would be0o111). This is a footgun, and so seems like something that could be trivially checked for.(I suppose this could be a "clippy" lint, but that seems like it would lose most of the benefit: it seems to me that most people who encounter this will be just starting out, not invested in running external, third-party commands using nightly.)
<!-- TRIAGEBOT_START --> <!-- TRIAGEBOT_ASSIGN_START --> <!-- TRIAGEBOT_ASSIGN_DATA_START$${"user":"GrigorenkoPV"}$$TRIAGEBOT_ASSIGN_DATA_END --> <!-- TRIAGEBOT_ASSIGN_END --> <!-- TRIAGEBOT_END -->rustbot at 2024-10-05 22:02:47
There are lots of lints in clippy that would most help new rustaceans. If there were a process to move lints to rustc as long as they have proven themselves as non-opinionated and false-positive-free, then a lot of people could start benefiting from clippy's lints.
Oli Scherer at 2016-05-06 11:59:22
One thing speaking against doing this in clippy is that this specific lint needs to be done during parsing, because the ast does not get the string representation of a literal, but only a numeric representation. Clippy would have to use the span to obtain the text and then act on the text.
Alternatively the ast could be changed to represent the original text, and ast -> hir lowering could extract the numerical representation.
Oli Scherer at 2016-05-06 12:04:25
cc @Manishearth @llogiq
Oli Scherer at 2016-05-06 12:04:39
I don't see a problem with looking at the span of a literal, so we could well develop the lint in clippy, and move it to rustc later.
AFAIR, the core team has expressed they don't want to increase the number of included lints to keep it manageable (and probably also to keep compile time from ballooning :smile:). The longer we go without merging lints into rustc, the more I think of clippy as
-Wallfor Rust...llogiq at 2016-05-06 13:45:36
Works in clippy. There are a lot of lints in clippy specifically for newcomers and stuff. That was in fact the original scope/goal, but it has expanded since then.
Also, zero-setup
cargo install clippyis happening soon, so I suspect clippy to gain more use amognst newcomers.Manish Goregaokar at 2016-05-07 21:21:03
I'm in favor of this being a compile time warning that could be disabled with
#allow, just like thedead_codewarning. I think this will bite a lot of newcomers who won't know to run clippy.Ben Stern at 2017-09-25 23:17:39
I am going to assume that since this topic has had little discussion for around 3-4 years and the issue still persists (see this playground), that it has been "agreed to by silence".
Two locations in the
rustc_parsecrate seem to be good places to try implementing this warning.0o191errors with an 'invalid digit' error, produced here (lexer/mod.rs). However, there is also an 'invalid suffix' error, produced in a different file (parser/expr.rs).The main questions to answer is: Where should this warning be emitted? Ideally, it should be produced
- Before
rustc"loses" knowledge of the raw characters of the token - Where other invalid numbers (like
0o191or0xG00D) are caught
Nicholas Baron at 2021-02-14 02:53:23
- Before
@rustbot claim
GrigorenkoPV at 2024-10-05 22:02:45