mirror of
https://github.com/rust-lang/rust.git
synced 2025-09-27 12:48:20 +00:00
15 lines
241 B
Rust
15 lines
241 B
Rust
//@ 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);
|
|
}
|