mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-24 07:44:10 +00:00
10 lines
211 B
Rust
10 lines
211 B
Rust
|
//@ aux-build: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}");
|
||
|
}
|