mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-25 00:03:43 +00:00
9 lines
201 B
Rust
9 lines
201 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`
|
||
|
}
|