os-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
204 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 10:09:18 +01:00
fn main() {}