mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-16 00:29:23 +00:00
10 lines
213 B
Rust
10 lines
213 B
Rust
//@ proc-macro: format-string-proc-macro.rs
|
|
//@ check-pass
|
|
|
|
extern crate format_string_proc_macro;
|
|
|
|
fn main() {
|
|
let a = 0;
|
|
format_string_proc_macro::capture_a_with_prepended_space_preserve_span!("{a}");
|
|
}
|