mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
10 lines
198 B
Rust
10 lines
198 B
Rust
// aux-build:invalid-punct-ident.rs
|
|
// needs-unwind proc macro panics to report errors
|
|
|
|
#[macro_use]
|
|
extern crate invalid_punct_ident;
|
|
|
|
invalid_ident!(); //~ ERROR proc macro panicked
|
|
|
|
fn main() {}
|