Files
kotlin-fork/idea/testData/refactoring/extractInterface/dropFinal.kt.after
T
2017-01-13 15:17:39 +03:00

11 lines
165 B
Plaintext
Vendored

interface I {
// INFO: {checked: "true"}
val one: Int
}
// NAME: I
// SIBLING:
class A : I {
// INFO: {checked: "true"}
final override val one = 1
}