mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 19:08:20 +00:00
5 lines
149 B
Rust
5 lines
149 B
Rust
fn main() {
|
|
format_args!(); //~ ERROR: requires at least a format string argument
|
|
format_args!(|| {}); //~ ERROR: must be a string literal
|
|
}
|