]> git.lizzy.rs Git - rust.git/blob - tests/ui/fmt/indoc-issue-106408.rs
Rollup merge of #106783 - WaffleLapkin:break-my-ident, r=wesleywiser
[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 }