[FIR JS] Suppress INVISIBLE_REFERENCE

This commit is contained in:
Nikolay Lunyak
2022-01-24 15:20:56 +03:00
committed by teamcity
parent 91fa7dec88
commit 0e549e3329
+1 -1
View File
@@ -5,7 +5,7 @@
//@JsName("imulEmulated")
//internal fun imul(Int, Int): Int
@Suppress("INVISIBLE_MEMBER")
@Suppress("INVISIBLE_MEMBER", "INVISIBLE_REFERENCE")
fun imul32(a: Int, b: Int): Int = imul(a, b)
fun imul64(a: Int, b: Int): Int = (a.toLong() * b.toLong()).toInt()