Files
kotlin-fork/compiler/testData/diagnostics/tests/variance/privateToThis/Abstract.kt
T

9 lines
207 B
Kotlin
Vendored

// FIR_IDENTICAL
internal abstract class Test</*0*/ in I> {
private/*private to this*/ final fun foo(): I {
throw Exception()
}
private/*private to this*/ final val i: I get() = foo()
}