Sign in
fuchsia
/
third_party
/
rust
/
HEAD
/
.
/
tests
/
ui
/
macros
/
macro-expansion-empty-span-147255.rs
blob: 311cf5bf9b1bd258534ef43119defa87bf58c430 [
file
]
//! Regression test for <https://github.com/rust-lang/rust/issues/147255>
fn
main
()
{
let
mut
x
=
4
;
let
x_str
=
{
format
!(
"{}"
,
x
);
//()
};
println
!(
"{}"
,
x_str
);
//~ ERROR `()` doesn't implement `std::fmt::Display`
}