Files
kotlin/idea/testData/refactoring/extractInterface/addInterfaceWithAbstract.kt
2016-09-22 20:11:31 +03:00

13 lines
181 B
Kotlin
Vendored

// NAME: X
// INFO: {checked: "true"}
interface T {}
open class A
// SIBLING:
class <caret>B : A(), T {
// INFO: {checked: "true", toAbstract: "true"}
fun foo() {
}
}