Skip to content

Commit f2017f4

Browse files
committed
Panic on errors in format! or <T: Display>::to_string
… instead of silently ignoring a result. `fmt::Write for String` never returns `Err`, so implementations of `Display` (or other traits of that family) never should either. Fixes #40103
1 parent 44e9e0a commit f2017f4

File tree

3 files changed

+16
-2
lines changed

3 files changed

+16
-2
lines changed

src/libcollections/fmt.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -524,6 +524,7 @@ use string;
524524
pub fn format(args: Arguments) -> string::String {
525525
let capacity = args.estimated_capacity();
526526
let mut output = string::String::with_capacity(capacity);
527-
let _ = output.write_fmt(args);
527+
output.write_fmt(args)
528+
.expect("a formatting trait implementation returned an error");
528529
output
529530
}

src/libcollections/macros.rs

+6
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,12 @@ macro_rules! vec {
7272
///
7373
/// [fmt]: ../std/fmt/index.html
7474
///
75+
/// # Panics
76+
///
77+
/// `format!` panics if a formatting trait implementation returns an error.
78+
/// This indicates an incorrect implementation
79+
/// since `fmt::Write for String` never returns an error itself.
80+
///
7581
/// # Examples
7682
///
7783
/// ```

src/libcollections/string.rs

+8-1
Original file line numberDiff line numberDiff line change
@@ -1888,13 +1888,20 @@ pub trait ToString {
18881888
fn to_string(&self) -> String;
18891889
}
18901890

1891+
/// # Panics
1892+
///
1893+
/// In this implementation, the `to_string` method panics
1894+
/// if the `Display` implementation returns an error.
1895+
/// This indicates an incorrect `Display` implementation
1896+
/// since `fmt::Write for String` never returns an error itself.
18911897
#[stable(feature = "rust1", since = "1.0.0")]
18921898
impl<T: fmt::Display + ?Sized> ToString for T {
18931899
#[inline]
18941900
default fn to_string(&self) -> String {
18951901
use core::fmt::Write;
18961902
let mut buf = String::new();
1897-
let _ = buf.write_fmt(format_args!("{}", self));
1903+
buf.write_fmt(format_args!("{}", self))
1904+
.expect("a Display implementation return an error unexpectedly");
18981905
buf.shrink_to_fit();
18991906
buf
19001907
}

0 commit comments

Comments
 (0)