mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-02 11:37:50 +00:00
14 lines
205 B
Plaintext
14 lines
205 B
Plaintext
// Regression test for issue #91227.
|
|
|
|
// run-rustfix
|
|
|
|
#![allow(unused_macros)]
|
|
|
|
macro_rules! thing {
|
|
//~^ ERROR: expected one of
|
|
//~| HELP: perhaps you meant to define a macro
|
|
() => {}
|
|
}
|
|
|
|
fn main() {}
|