about summary refs log tree commit diff
path: root/tests/ui/proc-macro/invalid-punct-ident-2.rs
blob: 14656652e1d3f58f665d8d9fe68340165424bc5b (plain)
1
2
3
4
5
6
7
8
9
//@ proc-macro: invalid-punct-ident.rs
//@ needs-unwind proc macro panics to report errors

#[macro_use]
extern crate invalid_punct_ident;

invalid_ident!(); //~ ERROR proc macro panicked

fn main() {}