mirror of
https://github.com/rust-lang/rust.git
synced 2025-09-27 04:31:18 +00:00
7 lines
173 B
Rust
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() {}
|