Files
kotlin-fork/idea/testData/refactoring/extractSuperclass/addSuperclassOnlySecondaryConstructors.kt.after
T
2016-09-22 20:11:30 +03:00

15 lines
148 B
Plaintext
Vendored

// NAME: X
interface T {}
open class X {
// INFO: {checked: "true"}
fun foo() {
}
}
// SIBLING:
class A : T, X {
constructor()
}