]> git.proxmox.com Git - rustc.git/blame - src/tools/clippy/tests/ui/crashes/ice-4775.rs
New upstream version 1.56.0~beta.4+dfsg1
[rustc.git] / src / tools / clippy / tests / ui / crashes / ice-4775.rs
CommitLineData
f20569fa
XL
1pub struct ArrayWrapper<const N: usize>([usize; N]);
2
3impl<const N: usize> ArrayWrapper<{ N }> {
4 pub fn ice(&self) {
5 for i in self.0.iter() {
6 println!("{}", i);
7 }
8 }
9}
10
11fn main() {}