c7f3a31517
Can be used for implementing interfaces / abstract classes / sealed classes or extending open classes
17 lines
263 B
Kotlin
Vendored
17 lines
263 B
Kotlin
Vendored
// "Implement interface" "true"
|
|
// SHOULD_BE_AVAILABLE_AFTER_EXECUTION
|
|
|
|
class Container {
|
|
interface <caret>Base {
|
|
val x: Boolean
|
|
|
|
val y: Double
|
|
get() = 3.14
|
|
|
|
fun foo(): String = ""
|
|
|
|
fun bar(z: Int): String
|
|
}
|
|
}
|
|
|