]> git.lizzy.rs Git - rust.git/blob - src/test/ui/proc-macro/invalid-punct-ident-3.rs
Rollup merge of #76119 - Amjad50:stabilizing-move_ref_pattern, r=nikomatsakis
[rust.git] / src / test / ui / proc-macro / invalid-punct-ident-3.rs
1 // aux-build:invalid-punct-ident.rs
2 // rustc-env:RUST_BACKTRACE=0
3
4 // FIXME https://github.com/rust-lang/rust/issues/59998
5 // normalize-stderr-test "thread.*panicked.*proc_macro_server.rs.*\n" -> ""
6 // normalize-stderr-test "note:.*RUST_BACKTRACE=1.*\n" -> ""
7 // normalize-stderr-test "\nerror: internal compiler error.*\n\n" -> ""
8 // normalize-stderr-test "note:.*unexpectedly panicked.*\n\n" -> ""
9 // normalize-stderr-test "note: we would appreciate a bug report.*\n\n" -> ""
10 // normalize-stderr-test "note: compiler flags.*\n\n" -> ""
11 // normalize-stderr-test "note: rustc.*running on.*\n\n" -> ""
12
13 #[macro_use]
14 extern crate invalid_punct_ident;
15
16 invalid_raw_ident!(); //~ ERROR proc macro panicked
17
18 fn main() {}