9a5cc39588
Also, use it with JS compilation ^KT-57735 Fixed
14 lines
250 B
Kotlin
Vendored
14 lines
250 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
// ISSUE: KT-57858
|
|
@file:Suppress("INVISIBLE_MEMBER", "INVISIBLE_REFERENCE")
|
|
|
|
import kotlin.internal.PlatformDependent
|
|
|
|
interface I {
|
|
@PlatformDependent
|
|
fun f() {}
|
|
}
|
|
|
|
class C : I {
|
|
fun <!VIRTUAL_MEMBER_HIDDEN!>f<!>() {}
|
|
} |