Sign in
rust
/
rust
/
a55845cd613f541bf4eb845085f561fabebddf97
/
.
/
tests
/
ui
/
format_push_string_no_std_unfixable.rs
blob: f5ed5e435b5aa50fa6625aed9ffcad01d7e7be60 [
file
]
//@no-rustfix
#![
warn
(
clippy
::
format_push_string
)]
#![
no_std
]
extern
crate alloc
;
use
alloc
::
format
;
use
alloc
::
string
::
String
;
fn
foo
(
string
:
&
mut
String
)
{
string
.
push_str
(&
format
!(
"{:?}"
,
1234
));
//~^ format_push_string
}