summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/crashes/ice-10148.rs
blob: 1ab3570c907ce99c75929b1703e653bc06f8a851 (plain)
1
2
3
4
5
6
7
8
9
// aux-build:../../auxiliary/proc_macros.rs

extern crate proc_macros;

use proc_macros::with_span;

fn main() {
    println!(with_span!(""something ""));
}