Sign in
rust
/
rust-clippy
/
62a82b361c02838afdf607d461726e0407f1a5ec
/
.
/
tests
/
ui
/
to_string_in_format_args_incremental.rs
blob: 514febe8c92de3a5b75a9a68d54a32969a5365fb [
file
] [
log
] [
blame
]
//@compile-flags: -C incremental=target/debug/test/incr
// see https://github.com/rust-lang/rust-clippy/issues/10969
fn
main
()
{
let
s
=
"Hello, world!"
;
println
!(
"{}"
,
s
.
to_string
());
}