2024-02-16 20:02:50 +00:00
|
|
|
//@ check-pass
|
2019-08-05 22:10:32 +00:00
|
|
|
|
|
|
|
#![allow(non_upper_case_globals)]
|
|
|
|
#![feature(format_args_nl)]
|
|
|
|
|
|
|
|
static arg0: () = ();
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
static arg1: () = ();
|
|
|
|
format_args!("{} {:?}", 0, 1);
|
|
|
|
format_args_nl!("{} {:?}", 0, 1);
|
|
|
|
}
|