rust/tests/crashes/140891.rs
Matthias Krüger 0443a66d39 more ice tests
2025-05-18 17:25:34 +02:00

7 lines
173 B
Rust

//@ known-bug: #140891
struct A<const N: usize> {}
impl<const N: usize> Iterator for A<N> {
fn next() -> [(); std::mem::size_of::<Option<Self::Item>>] {}
}
fn main() {}