rust/tests/ui/fmt/indoc-issue-106408.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
211 B
Rust
Raw Normal View History

//@ 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}");
}