095989b6fc
Now this class is redundant and all tests migrated to the base class ^KT-64805
13 lines
248 B
Kotlin
Vendored
13 lines
248 B
Kotlin
Vendored
// MAIN_FILE_NAME: I
|
|
// DECLARATION_TYPE: org.jetbrains.kotlin.psi.KtClass
|
|
class I(private val p: A) : A by p
|
|
|
|
interface A {
|
|
var Int.zoo: Unit
|
|
fun foo()
|
|
fun Int.smth(): Short
|
|
val foo: Int
|
|
var bar: Long
|
|
val Int.doo: String
|
|
}
|