about summary refs log tree commit diff
path: root/tests/ui/macros/macro-tt-matchers.rs
blob: 004be966cb492e7e2bba2a4b286729500cf8147f (plain)
1
2
3
4
5
6
7
8
9
10
11
//@ build-pass (FIXME(62277): could be check-pass?)
#![allow(dead_code)]

macro_rules! foo {
    ($x:tt) => (type Alias = $x<i32>;)
}

foo!(Box);


fn main() {}