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