Files
kotlin-fork/compiler/testData/klib/partial-linkage/referencingUnusableDeclarations/lib1/l1.kt
T
2023-08-16 19:11:34 +00:00

22 lines
400 B
Kotlin
Vendored

open class RemovedClass {
val p1 = "p1"
fun f1() = "f1"
}
interface RemovedInterface {
val p1: String
val p2 get() = "p2"
fun f1(): String
fun f2() = "f2"
}
class ClassWithChangedMembers {
fun removedFun() = "removedFun"
fun changedFun(x: String) = x
}
interface InterfaceWithChangedMembers {
fun removedFun() = "removedFun"
fun changedFun(x: String) = x
}