summaryrefslogtreecommitdiffstats
path: root/tests/ui/macros/issue-77475.rs
blob: 7b32a33ea4f1786db36add68274c8a06360079c0 (plain)
1
2
3
4
5
6
7
8
9
10
// check-pass
// Regression test of #77475, this used to be ICE.

#![feature(decl_macro)]

use crate as _;

pub macro ice(){}

fn main() {}