Files
kotlin-fork/compiler/testData/diagnostics/tests/variance/privateToThis/Trait.kt
T
2015-05-12 19:43:17 +02:00

8 lines
185 B
Kotlin
Vendored

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