Sign in
rust
/
rust
/
8eb7c58dbb7b32701af113bc58722d0d1fefb1eb
/
.
/
src
/
liballoc
/
tests
/
fmt.rs
blob: 0ad092b4997f42cde9d2068acdeb29c6ecc12ef4 [
file
]
use
std
::
fmt
;
#[
test
]
fn
test_format
()
{
let
s
=
fmt
::
format
(
format_args
!(
"Hello, {}!"
,
"world"
));
assert_eq
!(
s
,
"Hello, world!"
);
}