rust/tests/crashes/138359.rs
2025-05-01 17:04:37 +02:00

8 lines
178 B
Rust

//@ known-bug: #138359
#![feature(min_generic_const_args)]
#![feature(inherent_associated_types)]
struct a(Box<[u8; Box::b]>);
impl a {
fn c(self) { self.0.da }
}
fn main() {}