[Wasm] stdlib NFC: Suppress warnings for @WasmPrimitiveConstructor

This commit is contained in:
Svyatoslav Kuzmich
2023-01-19 20:07:31 +01:00
parent 8973ba294e
commit d0b25e5a90
2 changed files with 9 additions and 9 deletions
@@ -17,7 +17,7 @@ import kotlin.wasm.internal.*
public class Array<T> constructor(size: Int) {
internal val storage: WasmAnyArray = WasmAnyArray(size)
@Suppress("TYPE_PARAMETER_AS_REIFIED")
@Suppress("TYPE_PARAMETER_AS_REIFIED", "UNUSED_PARAMETER", "CAST_NEVER_SUCCEEDS")
@WasmPrimitiveConstructor
internal constructor(storage: WasmAnyArray) : this(check(false) as Int)