]> git.lizzy.rs Git - rust.git/blob - src/test/ui/macros/macro-tt-matchers.rs
Merge commit '984330a6ee3c4d15626685d6dc8b7b759ff630bd' into clippyup
[rust.git] / src / test / 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() {}