]> git.lizzy.rs Git - rust.git/blob - tests/ui/ice-3717.rs
Adding try_err lint
[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 }