Sign in
rust
/
rust
/
00df684c8bb32ab309c3325645f21b2bcab56d02
/
.
/
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
}