blob: 8f9dcb94794b69cee62724036a5c0f9a851d2cb3 [file] [log] [blame]
// run-pass
// pretty-expanded FIXME #23616
macro_rules! four {
() => (4)
}
fn main() {
let _x: [u16; four!()];
}