2
0
Fork 0
mirror of https://github.com/rust-lang/rust-clippy synced 2025-02-03 07:43:52 +00:00
rust-clippy/tests/ui/crashes/ice-3717.rs
2019-12-31 20:55:12 +09:00

8 lines
152 B
Rust

use std::collections::HashSet;
fn main() {}
pub fn ice_3717(_: &HashSet<usize>) {
let _ = [0u8; 0];
let _: HashSet<usize> = HashSet::new();
}