]> git.lizzy.rs Git - rust.git/blob - tests/ui/ice-3717.rs
Auto merge of #4314 - chansuke:add-negation-to-is_empty, r=flip1995
[rust.git] / tests / ui / ice-3717.rs
1 use std::collections::HashSet;
2
3 fn main() {}
4
5 pub fn ice_3717(_: &HashSet<usize>) {
6     let _ = [0u8; 0];
7     let _: HashSet<usize> = HashSet::new();
8 }