Files
kotlin-fork/idea/testData/quickfix/implement/nested.kt
T
Mikhail Glukhikh c7f3a31517 Create subclass intention implemented #KT-8473 Fixed
Can be used for implementing interfaces / abstract classes / sealed classes or extending open classes
2016-03-02 10:05:27 +03:00

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
}
}