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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
153 B
Rust
Raw Normal View History

2023-11-23 15:54:19 -06:00
//@ check-pass
2018-02-02 00:41:16 -06:00
// This should not ICE
2023-11-20 12:50:25 -06:00
// https://github.com/rust-lang/rust/issues/47639
2018-02-02 00:41:16 -06:00
pub fn test() {
macro_rules! foo {
() => ()
}
}