Sign in
rust
/
rust
/
0776e01ff45b345a3ffedfb8ebcb649bf91dbdee
/
.
/
tests
/
ui
/
format_push_string_no_std_unfixable.rs
blob: f5ed5e435b5aa50fa6625aed9ffcad01d7e7be60 [
file
] [
log
] [
blame
]
//@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
}