Rollup merge of #127355 - aceArt-GmbH:126475, r=oli-obk

Mark format! with must_use hint

Uses unstable feature https://github.com/rust-lang/rust/issues/94745

Part of #126475

First contribution to rust, please let me know if the blessing of tests is correct
Thanks `@bjorn3` for the help
This commit is contained in:
Matthias Krüger 2024-07-08 16:28:15 +02:00 committed by GitHub
commit 5b6eb28bda
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
22 changed files with 115 additions and 99 deletions

View File

@ -1796,18 +1796,18 @@ fn map<K>(mut map: BTreeMap<K, ()>) {
} }
fn map_debug<K: Debug>(mut map: BTreeMap<K, ()>) { fn map_debug<K: Debug>(mut map: BTreeMap<K, ()>) {
format!("{map:?}"); let _ = format!("{map:?}");
format!("{:?}", map.iter()); let _ = format!("{:?}", map.iter());
format!("{:?}", map.iter_mut()); let _ = format!("{:?}", map.iter_mut());
format!("{:?}", map.keys()); let _ = format!("{:?}", map.keys());
format!("{:?}", map.values()); let _ = format!("{:?}", map.values());
format!("{:?}", map.values_mut()); let _ = format!("{:?}", map.values_mut());
if true { if true {
format!("{:?}", map.into_iter()); let _ = format!("{:?}", map.into_iter());
} else if true { } else if true {
format!("{:?}", map.into_keys()); let _ = format!("{:?}", map.into_keys());
} else { } else {
format!("{:?}", map.into_values()); let _ = format!("{:?}", map.into_values());
} }
} }

View File

@ -705,9 +705,9 @@ fn set<K>(mut set: BTreeSet<K>) {
} }
fn set_debug<K: Debug>(set: BTreeSet<K>) { fn set_debug<K: Debug>(set: BTreeSet<K>) {
format!("{set:?}"); let _ = format!("{set:?}");
format!("{:?}", set.iter()); let _ = format!("{:?}", set.iter());
format!("{:?}", set.into_iter()); let _ = format!("{:?}", set.into_iter());
} }
fn set_clone<K: Clone>(mut set: BTreeSet<K>) { fn set_clone<K: Clone>(mut set: BTreeSet<K>) {

View File

@ -12,6 +12,7 @@
//! Some examples of the [`format!`] extension are: //! Some examples of the [`format!`] extension are:
//! //!
//! ``` //! ```
//! # #![allow(unused_must_use)]
//! format!("Hello"); // => "Hello" //! format!("Hello"); // => "Hello"
//! format!("Hello, {}!", "world"); // => "Hello, world!" //! format!("Hello, {}!", "world"); // => "Hello, world!"
//! format!("The number is {}", 1); // => "The number is 1" //! format!("The number is {}", 1); // => "The number is 1"
@ -50,6 +51,7 @@
//! the iterator advances. This leads to behavior like this: //! the iterator advances. This leads to behavior like this:
//! //!
//! ``` //! ```
//! # #![allow(unused_must_use)]
//! format!("{1} {} {0} {}", 1, 2); // => "2 1 1 2" //! format!("{1} {} {0} {}", 1, 2); // => "2 1 1 2"
//! ``` //! ```
//! //!
@ -77,6 +79,7 @@
//! For example, the following [`format!`] expressions all use named arguments: //! For example, the following [`format!`] expressions all use named arguments:
//! //!
//! ``` //! ```
//! # #![allow(unused_must_use)]
//! format!("{argument}", argument = "test"); // => "test" //! format!("{argument}", argument = "test"); // => "test"
//! format!("{name} {}", 1, name = 2); // => "2 1" //! format!("{name} {}", 1, name = 2); // => "2 1"
//! format!("{a} {c} {b}", a="a", b='b', c=3); // => "a 3 b" //! format!("{a} {c} {b}", a="a", b='b', c=3); // => "a 3 b"
@ -86,6 +89,7 @@
//! reference a variable with that name in the current scope. //! reference a variable with that name in the current scope.
//! //!
//! ``` //! ```
//! # #![allow(unused_must_use)]
//! let argument = 2 + 2; //! let argument = 2 + 2;
//! format!("{argument}"); // => "4" //! format!("{argument}"); // => "4"
//! //!

View File

@ -257,6 +257,7 @@ mod boxed {
#[unstable(feature = "liballoc_internals", issue = "none", reason = "implementation detail")] #[unstable(feature = "liballoc_internals", issue = "none", reason = "implementation detail")]
pub mod __export { pub mod __export {
pub use core::format_args; pub use core::format_args;
pub use core::hint::must_use;
} }
#[cfg(test)] #[cfg(test)]

View File

@ -111,6 +111,7 @@ macro_rules! vec {
/// # Examples /// # Examples
/// ///
/// ``` /// ```
/// # #![allow(unused_must_use)]
/// format!("test"); // => "test" /// format!("test"); // => "test"
/// format!("hello {}", "world!"); // => "hello world!" /// format!("hello {}", "world!"); // => "hello world!"
/// format!("x = {}, y = {val}", 10, val = 30); // => "x = 10, y = 30" /// format!("x = {}, y = {val}", 10, val = 30); // => "x = 10, y = 30"
@ -119,10 +120,13 @@ macro_rules! vec {
/// ``` /// ```
#[macro_export] #[macro_export]
#[stable(feature = "rust1", since = "1.0.0")] #[stable(feature = "rust1", since = "1.0.0")]
#[allow_internal_unstable(hint_must_use, liballoc_internals)]
#[cfg_attr(not(test), rustc_diagnostic_item = "format_macro")] #[cfg_attr(not(test), rustc_diagnostic_item = "format_macro")]
macro_rules! format { macro_rules! format {
($($arg:tt)*) => {{ ($($arg:tt)*) => {
$crate::__export::must_use({
let res = $crate::fmt::format($crate::__export::format_args!($($arg)*)); let res = $crate::fmt::format($crate::__export::format_args!($($arg)*));
res res
}} })
}
} }

View File

@ -217,19 +217,19 @@ fn test_format_macro_interface() {
// make sure that format! doesn't move out of local variables // make sure that format! doesn't move out of local variables
let a = Box::new(3); let a = Box::new(3);
format!("{a}"); let _ = format!("{a}");
format!("{a}"); let _ = format!("{a}");
// make sure that format! doesn't cause spurious unused-unsafe warnings when // make sure that format! doesn't cause spurious unused-unsafe warnings when
// it's inside of an outer unsafe block // it's inside of an outer unsafe block
unsafe { unsafe {
let a: isize = ::std::mem::transmute(3_usize); let a: isize = ::std::mem::transmute(3_usize);
format!("{a}"); let _ = format!("{a}");
} }
// test that trailing commas are acceptable // test that trailing commas are acceptable
format!("{}", "test",); let _ = format!("{}", "test",);
format!("{foo}", foo = "test",); let _ = format!("{foo}", foo = "test",);
} }
// Basic test to make sure that we can invoke the `write!` macro with an // Basic test to make sure that we can invoke the `write!` macro with an

View File

@ -441,7 +441,7 @@ fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
} }
} }
format!("{Foo:?}"); let _ = format!("{Foo:?}");
} }
#[test] #[test]
@ -455,7 +455,7 @@ fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
} }
} }
format!("{Foo:?}"); let _ = format!("{Foo:?}");
} }
#[test] #[test]
@ -469,7 +469,7 @@ fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
} }
} }
format!("{Foo:?}"); let _ = format!("{Foo:?}");
} }
} }

View File

@ -753,7 +753,7 @@ fn configure_cmake(
} }
if builder.config.llvm_clang_cl.is_some() { if builder.config.llvm_clang_cl.is_some() {
cflags.push(&format!(" --target={target}")); cflags.push(format!(" --target={target}"));
} }
cfg.define("CMAKE_C_FLAGS", cflags); cfg.define("CMAKE_C_FLAGS", cflags);
let mut cxxflags: OsString = builder let mut cxxflags: OsString = builder
@ -772,7 +772,7 @@ fn configure_cmake(
cxxflags.push(s); cxxflags.push(s);
} }
if builder.config.llvm_clang_cl.is_some() { if builder.config.llvm_clang_cl.is_some() {
cxxflags.push(&format!(" --target={target}")); cxxflags.push(format!(" --target={target}"));
} }
cfg.define("CMAKE_CXX_FLAGS", cxxflags); cfg.define("CMAKE_CXX_FLAGS", cxxflags);
if let Some(ar) = builder.ar(target) { if let Some(ar) = builder.ar(target) {
@ -913,7 +913,7 @@ fn run(self, builder: &Builder<'_>) -> PathBuf {
// Find clang's runtime library directory and push that as a search path to the // Find clang's runtime library directory and push that as a search path to the
// cmake linker flags. // cmake linker flags.
let clang_rt_dir = get_clang_cl_resource_dir(clang_cl_path); let clang_rt_dir = get_clang_cl_resource_dir(clang_cl_path);
ldflags.push_all(&format!("/libpath:{}", clang_rt_dir.display())); ldflags.push_all(format!("/libpath:{}", clang_rt_dir.display()));
} }
} }

View File

@ -2526,7 +2526,7 @@ fn configure_linker(&mut self, builder: &Builder<'_>) -> &mut Cargo {
if let Some(target_linker) = builder.linker(target) { if let Some(target_linker) = builder.linker(target) {
let target = crate::envify(&target.triple); let target = crate::envify(&target.triple);
self.command.env(&format!("CARGO_TARGET_{target}_LINKER"), target_linker); self.command.env(format!("CARGO_TARGET_{target}_LINKER"), target_linker);
} }
// We want to set -Clinker using Cargo, therefore we only call `linker_flags` and not // We want to set -Clinker using Cargo, therefore we only call `linker_flags` and not
// `linker_args` here. // `linker_args` here.

View File

@ -98,7 +98,7 @@ fn or_fun_call() {
let opt = Some(1); let opt = Some(1);
let hello = "Hello"; let hello = "Hello";
let _ = opt.ok_or(format!("{} world.", hello)); let _ = opt.ok_or_else(|| format!("{} world.", hello));
// index // index
let map = HashMap::<u64, u64>::new(); let map = HashMap::<u64, u64>::new();

View File

@ -100,6 +100,12 @@ error: use of `unwrap_or` to construct default value
LL | let _ = stringy.unwrap_or(String::new()); LL | let _ = stringy.unwrap_or(String::new());
| ^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `unwrap_or_default()` | ^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `unwrap_or_default()`
error: use of `ok_or` followed by a function call
--> tests/ui/or_fun_call.rs:101:17
|
LL | let _ = opt.ok_or(format!("{} world.", hello));
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `ok_or_else(|| format!("{} world.", hello))`
error: use of `unwrap_or` followed by a function call error: use of `unwrap_or` followed by a function call
--> tests/ui/or_fun_call.rs:105:21 --> tests/ui/or_fun_call.rs:105:21
| |
@ -190,5 +196,5 @@ error: use of `unwrap_or_else` to construct default value
LL | let _ = stringy.unwrap_or_else(String::new); LL | let _ = stringy.unwrap_or_else(String::new);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `unwrap_or_default()` | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `unwrap_or_default()`
error: aborting due to 31 previous errors error: aborting due to 32 previous errors

View File

@ -35,7 +35,7 @@ fn cast_dangling() {
fn format() { fn format() {
// Pointer string formatting! We can't check the output as it changes when libstd changes, // Pointer string formatting! We can't check the output as it changes when libstd changes,
// but we can make sure Miri does not error. // but we can make sure Miri does not error.
format!("{:?}", &mut 13 as *mut _); let _ = format!("{:?}", &mut 13 as *mut _);
} }
fn transmute() { fn transmute() {
@ -52,7 +52,7 @@ fn ptr_bitops1() {
let one = bytes.as_ptr().wrapping_offset(1); let one = bytes.as_ptr().wrapping_offset(1);
let three = bytes.as_ptr().wrapping_offset(3); let three = bytes.as_ptr().wrapping_offset(3);
let res = (one as usize) | (three as usize); let res = (one as usize) | (three as usize);
format!("{}", res); let _ = format!("{}", res);
} }
fn ptr_bitops2() { fn ptr_bitops2() {

View File

@ -138,7 +138,7 @@ struct P {
assert_eq!(x.partial_cmp(&y).unwrap(), x.cmp(&y)); assert_eq!(x.partial_cmp(&y).unwrap(), x.cmp(&y));
x.hash(&mut DefaultHasher::new()); x.hash(&mut DefaultHasher::new());
P::default(); P::default();
format!("{:?}", x); let _ = format!("{:?}", x);
} }
fn main() { fn main() {

View File

@ -202,7 +202,7 @@ fn test_errors() {
// Opening a non-existing file should fail with a "not found" error. // Opening a non-existing file should fail with a "not found" error.
assert_eq!(ErrorKind::NotFound, File::open(&path).unwrap_err().kind()); assert_eq!(ErrorKind::NotFound, File::open(&path).unwrap_err().kind());
// Make sure we can also format this. // Make sure we can also format this.
format!("{0}: {0:?}", File::open(&path).unwrap_err()); let _ = format!("{0}: {0:?}", File::open(&path).unwrap_err());
// Removing a non-existing file should fail with a "not found" error. // Removing a non-existing file should fail with a "not found" error.
assert_eq!(ErrorKind::NotFound, remove_file(&path).unwrap_err().kind()); assert_eq!(ErrorKind::NotFound, remove_file(&path).unwrap_err().kind());
// Reading the metadata of a non-existing file should fail with a "not found" error. // Reading the metadata of a non-existing file should fail with a "not found" error.
@ -301,5 +301,5 @@ fn test_from_raw_os_error() {
let error = Error::from_raw_os_error(code); let error = Error::from_raw_os_error(code);
assert!(matches!(error.kind(), ErrorKind::Uncategorized)); assert!(matches!(error.kind(), ErrorKind::Uncategorized));
// Make sure we can also format this. // Make sure we can also format this.
format!("{error:?}"); let _ = format!("{error:?}");
} }

View File

@ -15,5 +15,5 @@ fn main() {
panic!("unsupported OS") panic!("unsupported OS")
}; };
let err = io::Error::from_raw_os_error(raw_os_error); let err = io::Error::from_raw_os_error(raw_os_error);
format!("{err}: {err:?}"); let _ = format!("{err}: {err:?}");
} }

View File

@ -31,8 +31,8 @@ fn main() {
} }
// Regression test for Debug impl's // Regression test for Debug impl's
format!("{:?} {:?}", dst, dst.iter()); let _ = format!("{:?} {:?}", dst, dst.iter());
format!("{:?}", VecDeque::<u32>::new().iter()); let _ = format!("{:?}", VecDeque::<u32>::new().iter());
for a in dst { for a in dst {
assert_eq!(*a, 2); assert_eq!(*a, 2);

View File

@ -29,7 +29,8 @@ fn bar() ({
({ ((::alloc::__export::must_use as
fn(String) -> String {must_use::<String>})(({
let res = let res =
((::alloc::fmt::format as ((::alloc::fmt::format as
for<'a> fn(Arguments<'a>) -> String {format})(((format_arguments::new_const for<'a> fn(Arguments<'a>) -> String {format})(((format_arguments::new_const
@ -38,7 +39,7 @@ fn bar() ({
as &str)] as [&str; 1]) as &[&str; 1])) as Arguments<'_>)) as &str)] as [&str; 1]) as &[&str; 1])) as Arguments<'_>))
as String); as String);
(res as String) (res as String)
} as String); } as String)) as String);
} as ()) } as ())
type Foo = [i32; (3 as usize)]; type Foo = [i32; (3 as usize)];
struct Bar { struct Bar {

View File

@ -9,5 +9,5 @@ struct Foo {
} }
let f = Foo { foo: 10 }; let f = Foo { foo: 10 };
format!("{:?}", f); let _ = format!("{:?}", f);
} }

View File

@ -8,11 +8,11 @@ struct Foo {
fn main() { fn main() {
let foo = Foo { field: 0 }; let foo = Foo { field: 0 };
let bar = 3; let bar = 3;
format!("{0}", foo.field); //~ ERROR invalid format string: field access isn't supported let _ = format!("{0}", foo.field); //~ ERROR invalid format string: field access isn't supported
format!("{1} {} {bar}", "aa", foo.field); //~ ERROR invalid format string: field access isn't supported let _ = format!("{1} {} {bar}", "aa", foo.field); //~ ERROR invalid format string: field access isn't supported
format!("{2} {} {1} {bar}", "aa", "bb", foo.field); //~ ERROR invalid format string: field access isn't supported let _ = format!("{2} {} {1} {bar}", "aa", "bb", foo.field); //~ ERROR invalid format string: field access isn't supported
format!("{1} {} {baz}", "aa", foo.field, baz = 3); //~ ERROR invalid format string: field access isn't supported let _ = format!("{1} {} {baz}", "aa", foo.field, baz = 3); //~ ERROR invalid format string: field access isn't supported
format!("{1:?} {} {baz}", "aa", foo.field, baz = 3); //~ ERROR invalid format string: field access isn't supported let _ = format!("{1:?} {} {baz}", "aa", foo.field, baz = 3); //~ ERROR invalid format string: field access isn't supported
format!("{1:#?} {} {baz}", "aa", foo.field, baz = 3); //~ ERROR invalid format string: field access isn't supported let _ = format!("{1:#?} {} {baz}", "aa", foo.field, baz = 3); //~ ERROR invalid format string: field access isn't supported
format!("{1:.3} {} {baz}", "aa", foo.field, baz = 3); //~ ERROR invalid format string: field access isn't supported let _ = format!("{1:.3} {} {baz}", "aa", foo.field, baz = 3); //~ ERROR invalid format string: field access isn't supported
} }

View File

@ -8,11 +8,11 @@ struct Foo {
fn main() { fn main() {
let foo = Foo { field: 0 }; let foo = Foo { field: 0 };
let bar = 3; let bar = 3;
format!("{foo.field}"); //~ ERROR invalid format string: field access isn't supported let _ = format!("{foo.field}"); //~ ERROR invalid format string: field access isn't supported
format!("{foo.field} {} {bar}", "aa"); //~ ERROR invalid format string: field access isn't supported let _ = format!("{foo.field} {} {bar}", "aa"); //~ ERROR invalid format string: field access isn't supported
format!("{foo.field} {} {1} {bar}", "aa", "bb"); //~ ERROR invalid format string: field access isn't supported let _ = format!("{foo.field} {} {1} {bar}", "aa", "bb"); //~ ERROR invalid format string: field access isn't supported
format!("{foo.field} {} {baz}", "aa", baz = 3); //~ ERROR invalid format string: field access isn't supported let _ = format!("{foo.field} {} {baz}", "aa", baz = 3); //~ ERROR invalid format string: field access isn't supported
format!("{foo.field:?} {} {baz}", "aa", baz = 3); //~ ERROR invalid format string: field access isn't supported let _ = format!("{foo.field:?} {} {baz}", "aa", baz = 3); //~ ERROR invalid format string: field access isn't supported
format!("{foo.field:#?} {} {baz}", "aa", baz = 3); //~ ERROR invalid format string: field access isn't supported let _ = format!("{foo.field:#?} {} {baz}", "aa", baz = 3); //~ ERROR invalid format string: field access isn't supported
format!("{foo.field:.3} {} {baz}", "aa", baz = 3); //~ ERROR invalid format string: field access isn't supported let _ = format!("{foo.field:.3} {} {baz}", "aa", baz = 3); //~ ERROR invalid format string: field access isn't supported
} }

View File

@ -1,78 +1,78 @@
error: invalid format string: field access isn't supported error: invalid format string: field access isn't supported
--> $DIR/struct-field-as-captured-argument.rs:11:15 --> $DIR/struct-field-as-captured-argument.rs:11:23
| |
LL | format!("{foo.field}"); LL | let _ = format!("{foo.field}");
| ^^^^^^^^^ not supported in format string | ^^^^^^^^^ not supported in format string
| |
help: consider using a positional formatting argument instead help: consider using a positional formatting argument instead
| |
LL | format!("{0}", foo.field); LL | let _ = format!("{0}", foo.field);
| ~ +++++++++++ | ~ +++++++++++
error: invalid format string: field access isn't supported error: invalid format string: field access isn't supported
--> $DIR/struct-field-as-captured-argument.rs:12:15 --> $DIR/struct-field-as-captured-argument.rs:12:23
| |
LL | format!("{foo.field} {} {bar}", "aa"); LL | let _ = format!("{foo.field} {} {bar}", "aa");
| ^^^^^^^^^ not supported in format string | ^^^^^^^^^ not supported in format string
| |
help: consider using a positional formatting argument instead help: consider using a positional formatting argument instead
| |
LL | format!("{1} {} {bar}", "aa", foo.field); LL | let _ = format!("{1} {} {bar}", "aa", foo.field);
| ~ +++++++++++ | ~ +++++++++++
error: invalid format string: field access isn't supported error: invalid format string: field access isn't supported
--> $DIR/struct-field-as-captured-argument.rs:13:15 --> $DIR/struct-field-as-captured-argument.rs:13:23
| |
LL | format!("{foo.field} {} {1} {bar}", "aa", "bb"); LL | let _ = format!("{foo.field} {} {1} {bar}", "aa", "bb");
| ^^^^^^^^^ not supported in format string | ^^^^^^^^^ not supported in format string
| |
help: consider using a positional formatting argument instead help: consider using a positional formatting argument instead
| |
LL | format!("{2} {} {1} {bar}", "aa", "bb", foo.field); LL | let _ = format!("{2} {} {1} {bar}", "aa", "bb", foo.field);
| ~ +++++++++++ | ~ +++++++++++
error: invalid format string: field access isn't supported error: invalid format string: field access isn't supported
--> $DIR/struct-field-as-captured-argument.rs:14:15 --> $DIR/struct-field-as-captured-argument.rs:14:23
| |
LL | format!("{foo.field} {} {baz}", "aa", baz = 3); LL | let _ = format!("{foo.field} {} {baz}", "aa", baz = 3);
| ^^^^^^^^^ not supported in format string | ^^^^^^^^^ not supported in format string
| |
help: consider using a positional formatting argument instead help: consider using a positional formatting argument instead
| |
LL | format!("{1} {} {baz}", "aa", foo.field, baz = 3); LL | let _ = format!("{1} {} {baz}", "aa", foo.field, baz = 3);
| ~ +++++++++++ | ~ +++++++++++
error: invalid format string: field access isn't supported error: invalid format string: field access isn't supported
--> $DIR/struct-field-as-captured-argument.rs:15:15 --> $DIR/struct-field-as-captured-argument.rs:15:23
| |
LL | format!("{foo.field:?} {} {baz}", "aa", baz = 3); LL | let _ = format!("{foo.field:?} {} {baz}", "aa", baz = 3);
| ^^^^^^^^^ not supported in format string | ^^^^^^^^^ not supported in format string
| |
help: consider using a positional formatting argument instead help: consider using a positional formatting argument instead
| |
LL | format!("{1:?} {} {baz}", "aa", foo.field, baz = 3); LL | let _ = format!("{1:?} {} {baz}", "aa", foo.field, baz = 3);
| ~ +++++++++++ | ~ +++++++++++
error: invalid format string: field access isn't supported error: invalid format string: field access isn't supported
--> $DIR/struct-field-as-captured-argument.rs:16:15 --> $DIR/struct-field-as-captured-argument.rs:16:23
| |
LL | format!("{foo.field:#?} {} {baz}", "aa", baz = 3); LL | let _ = format!("{foo.field:#?} {} {baz}", "aa", baz = 3);
| ^^^^^^^^^ not supported in format string | ^^^^^^^^^ not supported in format string
| |
help: consider using a positional formatting argument instead help: consider using a positional formatting argument instead
| |
LL | format!("{1:#?} {} {baz}", "aa", foo.field, baz = 3); LL | let _ = format!("{1:#?} {} {baz}", "aa", foo.field, baz = 3);
| ~ +++++++++++ | ~ +++++++++++
error: invalid format string: field access isn't supported error: invalid format string: field access isn't supported
--> $DIR/struct-field-as-captured-argument.rs:17:15 --> $DIR/struct-field-as-captured-argument.rs:17:23
| |
LL | format!("{foo.field:.3} {} {baz}", "aa", baz = 3); LL | let _ = format!("{foo.field:.3} {} {baz}", "aa", baz = 3);
| ^^^^^^^^^ not supported in format string | ^^^^^^^^^ not supported in format string
| |
help: consider using a positional formatting argument instead help: consider using a positional formatting argument instead
| |
LL | format!("{1:.3} {} {baz}", "aa", foo.field, baz = 3); LL | let _ = format!("{1:.3} {} {baz}", "aa", foo.field, baz = 3);
| ~ +++++++++++ | ~ +++++++++++
error: aborting due to 7 previous errors error: aborting due to 7 previous errors

View File

@ -8,5 +8,5 @@
fn main() { fn main() {
let a: &dyn fmt::Debug = &1; let a: &dyn fmt::Debug = &1;
format!("{:?}", a); let _ = format!("{:?}", a);
} }