]> git.lizzy.rs Git - rust.git/blob - tests/ui/macros/macro-tt-matchers.rs
Rollup merge of #106783 - WaffleLapkin:break-my-ident, r=wesleywiser
[rust.git] / tests / ui / macros / macro-tt-matchers.rs
1 // build-pass (FIXME(62277): could be check-pass?)
2 #![allow(dead_code)]
3
4 macro_rules! foo {
5     ($x:tt) => (type Alias = $x<i32>;)
6 }
7
8 foo!(Box);
9
10
11 fn main() {}