about summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/crashes/ice-10148.rs
blob: 8baaccd811d7cb5aca45a7e6d2e491d696039ed3 (plain)
1
2
3
4
5
6
7
8
9
10
//@aux-build:../auxiliary/proc_macros.rs
//@no-rustfix
extern crate proc_macros;

use proc_macros::with_span;

fn main() {
    println!(with_span!(""something ""));
    //~^ println_empty_string
}