-
Notifications
You must be signed in to change notification settings - Fork 13.2k
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
Suggest type for overflowing bin/hex-literals #48432
Merged
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
e822e62
Suggest type for overflowing bin/hex-literals
flip1995 19c4771
Implementing requested changes
flip1995 5c70619
Rewrite error reporting as requested
flip1995 f45f760
Adapt stderr of UI test to PR #48449
flip1995 15ecf06
Remove isize test
flip1995 fc33b25
Improve getting literal representation
flip1995 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 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 |
---|---|---|
@@ -0,0 +1,33 @@ | ||
// Copyright 2018 The Rust Project Developers. See the COPYRIGHT | ||
// file at the top-level directory of this distribution and at | ||
// http://rust-lang.org/COPYRIGHT. | ||
// | ||
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or | ||
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license | ||
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your | ||
// option. This file may not be copied, modified, or distributed | ||
// except according to those terms. | ||
|
||
// must-compile-successfully | ||
|
||
#![feature(i128_type)] | ||
|
||
fn main() { | ||
let error = 255i8; //~WARNING literal out of range for i8 | ||
|
||
let ok = 0b1000_0001; // should be ok -> i32 | ||
let ok = 0b0111_1111i8; // should be ok -> 127i8 | ||
|
||
let fail = 0b1000_0001i8; //~WARNING literal out of range for i8 | ||
|
||
let fail = 0x8000_0000_0000_0000i64; //~WARNING literal out of range for i64 | ||
|
||
let fail = 0x1_FFFF_FFFFu32; //~WARNING literal out of range for u32 | ||
|
||
let fail: i128 = 0x8000_0000_0000_0000_0000_0000_0000_0000; | ||
//~^ WARNING literal out of range for i128 | ||
|
||
let fail = 0x8FFF_FFFF_FFFF_FFFE; //~WARNING literal out of range for i32 | ||
|
||
let fail = -0b1111_1111i8; //~WARNING literal out of range for i8 | ||
} |
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 |
---|---|---|
@@ -0,0 +1,58 @@ | ||
warning: literal out of range for i8 | ||
--> $DIR/type-overflow.rs:16:17 | ||
| | ||
LL | let error = 255i8; //~WARNING literal out of range for i8 | ||
| ^^^^^ | ||
| | ||
= note: #[warn(overflowing_literals)] on by default | ||
|
||
warning: literal out of range for i8 | ||
--> $DIR/type-overflow.rs:21:16 | ||
| | ||
LL | let fail = 0b1000_0001i8; //~WARNING literal out of range for i8 | ||
| ^^^^^^^^^^^^^ help: consider using `u8` instead: `0b1000_0001u8` | ||
| | ||
= note: the literal `0b1000_0001i8` (decimal `129`) does not fit into an `i8` and will become `-127i8` | ||
|
||
warning: literal out of range for i64 | ||
--> $DIR/type-overflow.rs:23:16 | ||
| | ||
LL | let fail = 0x8000_0000_0000_0000i64; //~WARNING literal out of range for i64 | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using `u64` instead: `0x8000_0000_0000_0000u64` | ||
| | ||
= note: the literal `0x8000_0000_0000_0000i64` (decimal `9223372036854775808`) does not fit into an `i64` and will become `-9223372036854775808i64` | ||
|
||
warning: literal out of range for u32 | ||
--> $DIR/type-overflow.rs:25:16 | ||
| | ||
LL | let fail = 0x1_FFFF_FFFFu32; //~WARNING literal out of range for u32 | ||
| ^^^^^^^^^^^^^^^^ help: consider using `u64` instead: `0x1_FFFF_FFFFu64` | ||
| | ||
= note: the literal `0x1_FFFF_FFFFu32` (decimal `8589934591`) does not fit into an `u32` and will become `4294967295u32` | ||
|
||
warning: literal out of range for i128 | ||
--> $DIR/type-overflow.rs:27:22 | ||
| | ||
LL | let fail: i128 = 0x8000_0000_0000_0000_0000_0000_0000_0000; | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
| | ||
= note: the literal `0x8000_0000_0000_0000_0000_0000_0000_0000` (decimal `170141183460469231731687303715884105728`) does not fit into an `i128` and will become `-170141183460469231731687303715884105728i128` | ||
= help: consider using `u128` instead | ||
|
||
warning: literal out of range for i32 | ||
--> $DIR/type-overflow.rs:30:16 | ||
| | ||
LL | let fail = 0x8FFF_FFFF_FFFF_FFFE; //~WARNING literal out of range for i32 | ||
| ^^^^^^^^^^^^^^^^^^^^^ | ||
| | ||
= note: the literal `0x8FFF_FFFF_FFFF_FFFE` (decimal `10376293541461622782`) does not fit into an `i32` and will become `-2i32` | ||
= help: consider using `i128` instead | ||
|
||
warning: literal out of range for i8 | ||
--> $DIR/type-overflow.rs:32:17 | ||
| | ||
LL | let fail = -0b1111_1111i8; //~WARNING literal out of range for i8 | ||
| ^^^^^^^^^^^^^ help: consider using `i16` instead: `0b1111_1111i16` | ||
| | ||
= note: the literal `0b1111_1111i8` (decimal `255`) does not fit into an `i8` and will become `-1i8` | ||
|
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.
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.
nit: preceding underscores suppress dead code warnings, so I'd avoid them if that is not intended.
Also the PR has a succint description for what this function does, which you could copy into a comment.
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.
The underscore is intended: for finding a fitting unsigned type, we don't look at integer types so the expanded macro never uses
_neg
in this case. So the linegives a warning. If there is a better way to do this, it would be nice to know :)
And yeah maybe I should have wrote a few more comments. Will do this, while implementing the other suggestions