mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-17 09:36:40 +00:00
13 lines
215 B
Rust
13 lines
215 B
Rust
//@ check-pass
|
|
|
|
#![allow(non_upper_case_globals)]
|
|
#![feature(format_args_nl)]
|
|
|
|
static arg0: () = ();
|
|
|
|
fn main() {
|
|
static arg1: () = ();
|
|
format_args!("{} {:?}", 0, 1);
|
|
format_args_nl!("{} {:?}", 0, 1);
|
|
}
|