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 21:54:19 +00:00
//@ check-pass
2018-02-02 06:41:16 +00:00
// This should not ICE
2023-11-20 18:50:25 +00:00
// https://github.com/rust-lang/rust/issues/47639
2018-02-02 06:41:16 +00:00
pub fn test() {
macro_rules! foo {
() => ()
}
}