Files
rust/tests/rustdoc-ui/nested-macro-rules-47639.rs
2024-02-22 16:04:04 +00:00

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 {
() => ()
}
}