76e132e758
Context: - Kotlin allows functions overloaded with different array element types. - Varargs are lowered to Array parameters. - Before this commit, K/Wasm erased an array element type from the signature, similar to type argument erasure in other cases. Fix: Stop erasing type arguments in arrays when computing v-table signatures. ^KT-58852 Fixed