We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
Actual: println!("{}", i8::MIN as u64); // => 18446744073709551488. Expected: println!("{}", i8::MIN as u64); // => 128.
println!("{}", i8::MIN as u64); // => 18446744073709551488
println!("{}", i8::MIN as u64); // => 128
The text was updated successfully, but these errors were encountered:
Auto merge of rust-lang#17024 - roife:fix-issue-16980, r=Veykril
1d3b8e9
fix: handle escaped chars in doc comments fix rust-lang#16980. For `ast::LiteralKind::String`, store the original string value.
05428c5
No branches or pull requests
Actual:
println!("{}", i8::MIN as u64); // => 18446744073709551488
.Expected:
println!("{}", i8::MIN as u64); // => 128
.The text was updated successfully, but these errors were encountered: