]> git.lizzy.rs Git - rust.git/blob - tests/ui/fmt/indoc-issue-106408.rs
Rollup merge of #107053 - devnexen:sigstringrepr_haiku, r=thomcc
[rust.git] / tests / ui / fmt / indoc-issue-106408.rs
1 // aux-build:format-string-proc-macro.rs
2 // check-pass
3
4 extern crate format_string_proc_macro;
5
6 fn main() {
7     let a = 0;
8     format_string_proc_macro::capture_a_with_prepended_space_preserve_span!("{a}");
9 }