mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
13 lines
309 B
Rust
13 lines
309 B
Rust
//@ 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
|
|
}
|