2019-07-03 06:30:28 +09:00
|
|
|
//@ build-pass (FIXME(62277): could be check-pass?)
|
2016-11-29 00:46:09 +09:00
|
|
|
#![allow(dead_code)]
|
2016-07-17 18:28:48 +00:00
|
|
|
|
|
|
|
|
macro_rules! foo {
|
|
|
|
|
($x:tt) => (type Alias = $x<i32>;)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
foo!(Box);
|
|
|
|
|
|
2018-10-31 13:08:01 +01:00
|
|
|
|
|
|
|
|
fn main() {}
|