blob: 76a4b8372c1caadff983f360d4e7bdfc1b56d300 [file] [log] [blame] [edit]
//@ run-pass
macro_rules! bar {
($($t:tt)*) => { impl<const N: usize> $($t)* };
}
macro_rules! baz {
($t:tt) => { fn test<const M: usize>(&self) -> usize { $t } };
}
struct Foo<const N: usize>;
bar!(Foo<N> { baz!{ M } });
fn main() {
assert_eq!(Foo::<7>.test::<3>(), 3);
}