-
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
Unexpected truncated boolean when debug printing with limited float precision. #78384
Comments
From the docs for format precision specifiers:
This is expected behaviour. |
This comment has been minimized.
This comment has been minimized.
The docs could be clearer on what constitutes "non-numeric types." I interpret that statement to be a suggestion as it depends on the type's Debug implementor whether they check As a comparison: #[derive(Debug)]
enum Bool { True, False }
fn main() {
println!("Hello, world! {:.3?}", false);
println!("Hello, world! {:.3?}", Bool::False);
println!("Hello, world! {:.3?}", &"false");
} has the following output
|
I tried this code
Actual output
Expected output, because a boolean isn't a decimal....
Version stuff:
The text was updated successfully, but these errors were encountered: