]> git.lizzy.rs Git - rust.git/blob - src/test/ui/proc-macro/invalid-punct-ident-3.rs
Rollup merge of #104158 - Ayush1325:executable, r=Mark-Simulacrum
[rust.git] / src / test / ui / proc-macro / invalid-punct-ident-3.rs
1 // aux-build:invalid-punct-ident.rs
2 // needs-unwind proc macro panics to report errors
3
4 #[macro_use]
5 extern crate invalid_punct_ident;
6
7 invalid_raw_ident!(); //~ ERROR proc macro panicked
8
9 fn main() {}