rust/tests/rustdoc-ui/nested-macro-rules-47639.rs

10 lines
153 B
Rust

//@ check-pass
// This should not ICE
// https://github.com/rust-lang/rust/issues/47639
pub fn test() {
macro_rules! foo {
() => ()
}
}