rust/tests/crashes/121858.rs

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

15 lines
248 B
Rust
Raw Normal View History

2024-05-29 16:06:50 +00:00
//@ known-bug: #121858
#![feature(generic_const_exprs)]
struct Outer<const A: i64, const B: usize>();
impl<const A: usize, const B: usize> Outer<A, B>
where
[(); A + (B * 2)]:,
{
2024-05-29 16:06:50 +00:00
fn o() -> Union {}
}
fn main() {
Outer::<1, 1>::o();
}