4d9b19da82
#KT-18539 Fixed
27 lines
463 B
Plaintext
Vendored
27 lines
463 B
Plaintext
Vendored
// "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 yet implemented")
|
|
|
|
override fun bar(z: Int): String {
|
|
TODO("Not yet implemented")
|
|
}
|
|
}
|
|
|