]> git.lizzy.rs Git - rust.git/blob - src/test/ui/proc-macro/invalid-punct-ident-4.rs
normalize stderr
[rust.git] / src / test / ui / proc-macro / invalid-punct-ident-4.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 lexer_failure!();
8 //~^ ERROR proc macro panicked
9 //~| ERROR unexpected closing delimiter: `)`
10
11 fn main() {
12     let _recovery_witness: () = 0; //~ ERROR mismatched types
13 }