2024-11-24 17:37:25 -08:00
|
|
|
//@ proc-macro: format-string-proc-macro.rs
|
2022-12-27 22:15:25 +01:00
|
|
|
|
|
|
|
|
extern crate format_string_proc_macro;
|
|
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
|
format_string_proc_macro::respan_to_invalid_format_literal!("¡");
|
2024-10-14 23:22:51 +02:00
|
|
|
//~^ ERROR invalid format string: expected `}` but string was terminated
|
2022-12-27 22:15:25 +01:00
|
|
|
format_args!(r#concat!("¡ {"));
|
2024-10-14 23:22:51 +02:00
|
|
|
//~^ ERROR invalid format string: expected `}` but string was terminated
|
2022-12-27 22:15:25 +01:00
|
|
|
}
|