rust-clippy/tests/ui/ice-3717.rs

9 lines
152 B
Rust
Raw Normal View History

2019-02-16 21:41:06 +00:00
use std::collections::HashSet;
fn main() {}
pub fn ice_3717(_: &HashSet<usize>) {
let _ = [0u8; 0];
let _: HashSet<usize> = HashSet::new();
}