Minimal example ```ts function is<T>(a: T, b: T): bool { return a == b; } assert(is(1, 1.0)); ``` This example can't validate and produce output: ``` [wasm-validator error in function $start:main] 1 != 4: call param types must match, on [i32] (call $~main/is<f64> [i32] (i32.const 0) [f64] (f64.const 1) ) (on argument 0) Error: Validate error ... ```