9 lines
202 B
Rust
9 lines
202 B
Rust
|
//@ aux-build:format-string-proc-macro.rs
|
||
|
|
||
|
extern crate format_string_proc_macro;
|
||
|
|
||
|
fn main() {
|
||
|
format_string_proc_macro::bad_format_args_captures!();
|
||
|
//~^ ERROR there is no argument named `x`
|
||
|
}
|