8 lines
190 B
Kotlin
Vendored
8 lines
190 B
Kotlin
Vendored
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()
|
|
}
|