]> git.proxmox.com Git - rustc.git/blob - src/tools/clippy/tests/ui/crashes/ice-4760.rs
New upstream version 1.49.0+dfsg1
[rustc.git] / src / tools / clippy / tests / ui / crashes / ice-4760.rs
1 const COUNT: usize = 2;
2 struct Thing;
3 trait Dummy {}
4
5 const _: () = {
6 impl Dummy for Thing where [i32; COUNT]: Sized {}
7 };
8
9 fn main() {}