mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-11 07:34:18 +00:00
9 lines
152 B
Rust
9 lines
152 B
Rust
|
use std::collections::HashSet;
|
||
|
|
||
|
fn main() {}
|
||
|
|
||
|
pub fn ice_3717(_: &HashSet<usize>) {
|
||
|
let _ = [0u8; 0];
|
||
|
let _: HashSet<usize> = HashSet::new();
|
||
|
}
|