import { HASH } from "internal/hash"; function check(hash: u32): bool { return true; } check(HASH(null)); check(HASH("")); check(HASH("a")); check(HASH("ab")); check(HASH("abc")); check(HASH(0.0)); check(HASH(1.0)); check(HASH(1.1)); check(HASH(-0)); check(HASH(Infinity)); check(HASH(NaN)); check(HASH(0.0)); check(HASH(1.0)); check(HASH(1.1)); check(HASH(-0)); check(HASH(Infinity)); check(HASH(NaN));