]> git.lizzy.rs Git - rust.git/blob - src/test/ui/macros/issue-77475.rs
Rollup merge of #97317 - GuillaumeGomez:gui-settings-text-click, r=jsha
[rust.git] / src / test / 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() {}