summaryrefslogtreecommitdiffstats
path: root/tests/ui/macros/issue-52169.rs
blob: f178cd30cb499e1ea1108101bf0ff7b6ad477b68 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// run-pass

#[allow(unused_macro_rules)]
macro_rules! a {
    ($i:literal) => { "right" };
    ($i:tt) => { "wrong" };
}

macro_rules! b {
    ($i:literal) => { a!($i) };
}

fn main() {
    assert_eq!(b!(0), "right");
}