about summary refs log tree commit diff
path: root/tests/rustdoc/ice-nested-macro-rules-47639.rs
blob: c38dc2810cf3e1b8fff5bb1a48dc2cf8c97efad3 (plain)
1
2
3
4
5
6
7
8
// This should not ICE

// https://github.com/rust-lang/rust/issues/47639
pub fn test() {
    macro_rules! foo {
        () => ()
    }
}