Files
kotlin-fork/compiler/testData/diagnostics/nativeTests/objCName6.kt
T
Anastasia.Nekrasova fd4f6c90c7 [K/N][K2] K2 behavioral difference with inconsistent inheritance of ObjCName
Support for complex cases with multiple substitution overrides.

#KT-64276 Fixed
2024-02-19 09:29:43 +00:00

21 lines
515 B
Kotlin
Vendored

// FIR_IDENTICAL
// FILE: kotlin.kt
@file:OptIn(kotlin.experimental.ExperimentalObjCName::class)
fun interface AutoCloseable {
@ObjCName("close") fun close()
}
interface BaseStream<T, S : BaseStream<T, S>> : AutoCloseable {
override fun close()
}
interface Stream<T> : BaseStream<T, Stream<T>> {}
open class TerminatableStream<T : TerminatableStream<T>> {
@ObjCName("close") open fun close() {}
}
class StreamImpl<T> : TerminatableStream<StreamImpl<T>>, Stream<T> {
constructor() : super() {}
}