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

27 lines
503 B
Groff
Vendored

package lib1
abstract class AbstractClassWithFunctions {
abstract fun foo(): Int
abstract fun bar(): Int
abstract fun baz(): Int
}
interface InterfaceWithFunctions {
fun foo(): Int
fun bar(): Int
}
abstract class AbstractClassWithProperties {
abstract val foo1: Int
abstract val foo2: Int
abstract val bar1: Int
abstract val bar2: Int
abstract val baz1: Int
abstract val baz2: Int
}
interface InterfaceWithProperties {
val foo: Int
val bar: Int
}