rust/tests/ui/crashes/ice-10148.rs
2023-03-06 21:54:40 +00:00

10 lines
184 B
Rust

// aux-build:../../auxiliary/proc_macro_with_span.rs
extern crate proc_macro_with_span;
use proc_macro_with_span::with_span;
fn main() {
println!(with_span!(""something ""));
}