blob: 4c63b30047a93259d9c62dd7b8a7b4c45b9c3307 [file] [log] [blame]
// "Implement interface" "true"
// WITH_RUNTIME
// SHOULD_BE_AVAILABLE_AFTER_EXECUTION
class Container {
interface Base {
val x: Boolean
val y: Double
get() = 3.14
fun foo(): String = ""
fun bar(z: Int): String
}
}
class BaseImpl : Container.Base {
override val x: Boolean
get() = TODO("not implemented") //To change initializer of created properties use File | Settings | File Templates.
override fun bar(z: Int): String {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
}
}