Skip to content

Commit 3e9c9a0

Browse files
author
lukas
committed
Mark format! with must_use hint
1 parent 28cc0b6 commit 3e9c9a0

File tree

22 files changed

+115
-99
lines changed

22 files changed

+115
-99
lines changed

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

Lines changed: 9 additions & 9 deletions
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

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

Lines changed: 3 additions & 3 deletions
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>) {

library/alloc/src/fmt.rs

Lines changed: 4 additions & 0 deletions
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
//!

library/alloc/src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -256,6 +256,7 @@ pub mod vec;
256256
#[unstable(feature = "liballoc_internals", issue = "none", reason = "implementation detail")]
257257
pub mod __export {
258258
pub use core::format_args;
259+
pub use core::hint::must_use;
259260
}
260261

261262
#[cfg(test)]

library/alloc/src/macros.rs

Lines changed: 8 additions & 4 deletions
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
}

library/alloc/tests/fmt.rs

Lines changed: 5 additions & 5 deletions
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

library/core/tests/fmt/builders.rs

Lines changed: 3 additions & 3 deletions
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

src/bootstrap/src/core/build_steps/llvm.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -755,7 +755,7 @@ fn configure_cmake(
755755
}
756756

757757
if builder.config.llvm_clang_cl.is_some() {
758-
cflags.push(&format!(" --target={target}"));
758+
cflags.push(format!(" --target={target}"));
759759
}
760760
cfg.define("CMAKE_C_FLAGS", cflags);
761761
let mut cxxflags: OsString = builder
@@ -774,7 +774,7 @@ fn configure_cmake(
774774
cxxflags.push(s);
775775
}
776776
if builder.config.llvm_clang_cl.is_some() {
777-
cxxflags.push(&format!(" --target={target}"));
777+
cxxflags.push(format!(" --target={target}"));
778778
}
779779
cfg.define("CMAKE_CXX_FLAGS", cxxflags);
780780
if let Some(ar) = builder.ar(target) {
@@ -915,7 +915,7 @@ impl Step for Lld {
915915
// Find clang's runtime library directory and push that as a search path to the
916916
// cmake linker flags.
917917
let clang_rt_dir = get_clang_cl_resource_dir(clang_cl_path);
918-
ldflags.push_all(&format!("/libpath:{}", clang_rt_dir.display()));
918+
ldflags.push_all(format!("/libpath:{}", clang_rt_dir.display()));
919919
}
920920
}
921921

src/bootstrap/src/core/builder.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2527,7 +2527,7 @@ impl Cargo {
25272527

25282528
if let Some(target_linker) = builder.linker(target) {
25292529
let target = crate::envify(&target.triple);
2530-
self.command.env(&format!("CARGO_TARGET_{target}_LINKER"), target_linker);
2530+
self.command.env(format!("CARGO_TARGET_{target}_LINKER"), target_linker);
25312531
}
25322532
// We want to set -Clinker using Cargo, therefore we only call `linker_flags` and not
25332533
// `linker_args` here.

src/tools/clippy/tests/ui/or_fun_call.fixed

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ fn or_fun_call() {
9898

9999
let opt = Some(1);
100100
let hello = "Hello";
101-
let _ = opt.ok_or(format!("{} world.", hello));
101+
let _ = opt.ok_or_else(|| format!("{} world.", hello));
102102

103103
// index
104104
let map = HashMap::<u64, u64>::new();

0 commit comments

Comments
 (0)