rust/tests/ui/proc-macro/invalid-punct-ident-3.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
202 B
Rust
Raw Normal View History

// aux-build:invalid-punct-ident.rs
// needs-unwind proc macro panics to report errors
#[macro_use]
extern crate invalid_punct_ident;
invalid_raw_ident!(); //~ ERROR proc macro panicked
2020-03-17 09:09:18 +00:00
fn main() {}