Sign in
rust
/
rust
/
244fc326f23b58bc9db6bd985c59b80098ff14c1
/
.
/
tests
/
ui
/
hygiene
/
format-args.rs
blob: f845f5d8a4c8f9ef0039ad4af25c6a8269c594b6 [
file
] [
log
] [
blame
]
//@ check-pass
#![
allow
(
non_upper_case_globals
)]
#![
feature
(
format_args_nl
)]
use
std
::
format_args_nl
;
static
arg0
:
()
=
();
fn
main
()
{
static
arg1
:
()
=
();
format_args
!(
"{} {:?}"
,
0
,
1
);
format_args_nl
!(
"{} {:?}"
,
0
,
1
);
}