]> git.lizzy.rs Git - rust.git/blob - tests/ui/macros/macro-invocation-in-count-expr-fixed-array-type.rs
Rollup merge of #107127 - uweigand:s390x-sanitizer, r=Mark-Simulacrum
[rust.git] / tests / ui / macros / macro-invocation-in-count-expr-fixed-array-type.rs
1 // run-pass
2 // pretty-expanded FIXME #23616
3
4 macro_rules! four {
5     () => (4)
6 }
7
8 fn main() {
9     let _x: [u16; four!()];
10 }