Files
kotlin-fork/compiler/testData/diagnostics/nativeTests/overridesMemberWithPlatformDependent.kt
T
2023-08-18 13:29:20 +00:00

22 lines
364 B
Kotlin
Vendored

// ISSUE: KT-57858
// FILE: Sub.kt
package kotlin.internal
@Target(AnnotationTarget.FUNCTION)
annotation class PlatformDependent
// FILE: Main.kt
@file:Suppress("INVISIBLE_MEMBER", "INVISIBLE_REFERENCE")
import kotlin.internal.PlatformDependent
interface I {
@PlatformDependent
fun f() {}
}
class C : I {
fun <!VIRTUAL_MEMBER_HIDDEN!>f<!>() {}
}