rust/tests/crashes/137888.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
176 B
Rust
Raw Normal View History

2025-03-07 23:17:25 +01:00
//@ known-bug: #137888
#![feature(generic_const_exprs)]
macro_rules! empty {
() => ();
}
fn bar<const N: i32>() -> [(); {
empty! {};
N
}] {
}
fn main() {}