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