blob: 042fe6c600daac05d047d47c613b5987055644bd [file] [log] [blame] [edit]
//@ aux-build:invalid-punct-ident.rs
//@ needs-unwind proc macro panics to report errors
#[macro_use]
extern crate invalid_punct_ident;
lexer_failure!();
//~^ ERROR proc macro panicked
//~| ERROR unexpected closing delimiter: `)`
fn main() {
let _recovery_witness: () = 0; //~ ERROR mismatched types
}