rust/tests/ui/crashes/ice-10148.rs

10 lines
178 B
Rust
Raw Normal View History

2023-04-20 10:19:36 -05:00
//@aux-build:../auxiliary/proc_macros.rs:proc-macro
2023-07-27 06:40:22 -05:00
//@no-rustfix
extern crate proc_macros;
use proc_macros::with_span;
fn main() {
println!(with_span!(""something ""));
}