Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 895175a

Browse files
authoredJul 8, 2024
Rollup merge of rust-lang#127355 - aceArt-GmbH:126475, r=oli-obk
Mark format! with must_use hint Uses unstable feature rust-lang#94745 Part of rust-lang#126475 First contribution to rust, please let me know if the blessing of tests is correct Thanks `@bjorn3` for the help
2 parents 57cea32 + 9919a83 commit 895175a

File tree

7 files changed

+33
-24
lines changed

7 files changed

+33
-24
lines changed
 

‎alloc/src/collections/btree/map/tests.rs

+9-9
Original file line numberDiff line numberDiff line change
@@ -1796,18 +1796,18 @@ fn test_ord_absence() {
17961796
}
17971797

17981798
fn map_debug<K: Debug>(mut map: BTreeMap<K, ()>) {
1799-
format!("{map:?}");
1800-
format!("{:?}", map.iter());
1801-
format!("{:?}", map.iter_mut());
1802-
format!("{:?}", map.keys());
1803-
format!("{:?}", map.values());
1804-
format!("{:?}", map.values_mut());
1799+
let _ = format!("{map:?}");
1800+
let _ = format!("{:?}", map.iter());
1801+
let _ = format!("{:?}", map.iter_mut());
1802+
let _ = format!("{:?}", map.keys());
1803+
let _ = format!("{:?}", map.values());
1804+
let _ = format!("{:?}", map.values_mut());
18051805
if true {
1806-
format!("{:?}", map.into_iter());
1806+
let _ = format!("{:?}", map.into_iter());
18071807
} else if true {
1808-
format!("{:?}", map.into_keys());
1808+
let _ = format!("{:?}", map.into_keys());
18091809
} else {
1810-
format!("{:?}", map.into_values());
1810+
let _ = format!("{:?}", map.into_values());
18111811
}
18121812
}
18131813

‎alloc/src/collections/btree/set/tests.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -705,9 +705,9 @@ fn test_ord_absence() {
705705
}
706706

707707
fn set_debug<K: Debug>(set: BTreeSet<K>) {
708-
format!("{set:?}");
709-
format!("{:?}", set.iter());
710-
format!("{:?}", set.into_iter());
708+
let _ = format!("{set:?}");
709+
let _ = format!("{:?}", set.iter());
710+
let _ = format!("{:?}", set.into_iter());
711711
}
712712

713713
fn set_clone<K: Clone>(mut set: BTreeSet<K>) {

‎alloc/src/fmt.rs

+4
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
//! Some examples of the [`format!`] extension are:
1313
//!
1414
//! ```
15+
//! # #![allow(unused_must_use)]
1516
//! format!("Hello"); // => "Hello"
1617
//! format!("Hello, {}!", "world"); // => "Hello, world!"
1718
//! format!("The number is {}", 1); // => "The number is 1"
@@ -50,6 +51,7 @@
5051
//! the iterator advances. This leads to behavior like this:
5152
//!
5253
//! ```
54+
//! # #![allow(unused_must_use)]
5355
//! format!("{1} {} {0} {}", 1, 2); // => "2 1 1 2"
5456
//! ```
5557
//!
@@ -77,6 +79,7 @@
7779
//! For example, the following [`format!`] expressions all use named arguments:
7880
//!
7981
//! ```
82+
//! # #![allow(unused_must_use)]
8083
//! format!("{argument}", argument = "test"); // => "test"
8184
//! format!("{name} {}", 1, name = 2); // => "2 1"
8285
//! format!("{a} {c} {b}", a="a", b='b', c=3); // => "a 3 b"
@@ -86,6 +89,7 @@
8689
//! reference a variable with that name in the current scope.
8790
//!
8891
//! ```
92+
//! # #![allow(unused_must_use)]
8993
//! let argument = 2 + 2;
9094
//! format!("{argument}"); // => "4"
9195
//!

‎alloc/src/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -257,6 +257,7 @@ pub mod vec;
257257
#[unstable(feature = "liballoc_internals", issue = "none", reason = "implementation detail")]
258258
pub mod __export {
259259
pub use core::format_args;
260+
pub use core::hint::must_use;
260261
}
261262

262263
#[cfg(test)]

‎alloc/src/macros.rs

+8-4
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,7 @@ macro_rules! vec {
111111
/// # Examples
112112
///
113113
/// ```
114+
/// # #![allow(unused_must_use)]
114115
/// format!("test"); // => "test"
115116
/// format!("hello {}", "world!"); // => "hello world!"
116117
/// format!("x = {}, y = {val}", 10, val = 30); // => "x = 10, y = 30"
@@ -119,10 +120,13 @@ macro_rules! vec {
119120
/// ```
120121
#[macro_export]
121122
#[stable(feature = "rust1", since = "1.0.0")]
123+
#[allow_internal_unstable(hint_must_use, liballoc_internals)]
122124
#[cfg_attr(not(test), rustc_diagnostic_item = "format_macro")]
123125
macro_rules! format {
124-
($($arg:tt)*) => {{
125-
let res = $crate::fmt::format($crate::__export::format_args!($($arg)*));
126-
res
127-
}}
126+
($($arg:tt)*) => {
127+
$crate::__export::must_use({
128+
let res = $crate::fmt::format($crate::__export::format_args!($($arg)*));
129+
res
130+
})
131+
}
128132
}

‎alloc/tests/fmt.rs

+5-5
Original file line numberDiff line numberDiff line change
@@ -217,19 +217,19 @@ fn test_format_macro_interface() {
217217

218218
// make sure that format! doesn't move out of local variables
219219
let a = Box::new(3);
220-
format!("{a}");
221-
format!("{a}");
220+
let _ = format!("{a}");
221+
let _ = format!("{a}");
222222

223223
// make sure that format! doesn't cause spurious unused-unsafe warnings when
224224
// it's inside of an outer unsafe block
225225
unsafe {
226226
let a: isize = ::std::mem::transmute(3_usize);
227-
format!("{a}");
227+
let _ = format!("{a}");
228228
}
229229

230230
// test that trailing commas are acceptable
231-
format!("{}", "test",);
232-
format!("{foo}", foo = "test",);
231+
let _ = format!("{}", "test",);
232+
let _ = format!("{foo}", foo = "test",);
233233
}
234234

235235
// Basic test to make sure that we can invoke the `write!` macro with an

‎core/tests/fmt/builders.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -441,7 +441,7 @@ mod debug_map {
441441
}
442442
}
443443

444-
format!("{Foo:?}");
444+
let _ = format!("{Foo:?}");
445445
}
446446

447447
#[test]
@@ -455,7 +455,7 @@ mod debug_map {
455455
}
456456
}
457457

458-
format!("{Foo:?}");
458+
let _ = format!("{Foo:?}");
459459
}
460460

461461
#[test]
@@ -469,7 +469,7 @@ mod debug_map {
469469
}
470470
}
471471

472-
format!("{Foo:?}");
472+
let _ = format!("{Foo:?}");
473473
}
474474
}
475475

0 commit comments

Comments
 (0)
Failed to load comments.