summaryrefslogtreecommitdiffstats
path: root/tests/ui/macros/macro-invocation-in-count-expr-fixed-array-type.rs
blob: 8f9dcb94794b69cee62724036a5c0f9a851d2cb3 (plain)
1
2
3
4
5
6
7
8
9
10
// run-pass
// pretty-expanded FIXME #23616

macro_rules! four {
    () => (4)
}

fn main() {
    let _x: [u16; four!()];
}