mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-13 08:27:14 +00:00
8 lines
152 B
Rust
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();
|
|
}
|