blob: 59b347dac679c252dd44fccd83acda84ffa59d5e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// aux-build:invalid-punct-ident.rs
#[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
}
|