]> git.lizzy.rs Git - rust.git/blob - tests/ui/macros/issue-77475.rs
Auto merge of #106952 - petrochenkov:docglob, r=notriddle,GuillaumeGomez
[rust.git] / tests / ui / macros / issue-77475.rs
1 // check-pass
2 // Regression test of #77475, this used to be ICE.
3
4 #![feature(decl_macro)]
5
6 use crate as _;
7
8 pub macro ice(){}
9
10 fn main() {}