Files
kotlin-fork/compiler/testData/klibABI/referencingUnusableDeclarations/lib1/l1.kt.1
T
2023-03-23 10:24:27 +00:00

24 lines
512 B
Groff
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
fun changedFun(x: Int) = x.toString()
}
interface InterfaceWithChangedMembers {
// fun removedFun() = "removedFun"
// fun changedFun(x: String) = x
fun changedFun(x: Int) = x.toString()
}