rust/tests/crashes/125772.rs

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

18 lines
293 B
Rust
Raw Normal View History

2024-06-09 00:36:21 +08:00
//@ known-bug: rust-lang/rust#125772
//@ only-x86_64
#![feature(generic_const_exprs)]
struct Outer<const A: i64, const B: i64>();
impl<const A: usize, const B: usize> Outer<A, B>
where
[(); A + (B * 2)]:,
{
fn i() -> Self {
Self
}
}
fn main() {
Outer::<1, 1>::o();
}