Files
kotlin-fork/idea/testData/refactoring/pullUp/k2k/abstractFromInterfaceToInterface.kt
T

9 lines
164 B
Kotlin
Vendored

// WITH_RUNTIME
interface T
interface <caret>U: T {
// INFO: {"checked": "true"}
val x: Int
// INFO: {"checked": "true"}
fun foo(n: Int): Boolean
}