Files
kotlin-fork/idea/testData/refactoring/pullUp/noInitializationInInterface.kt.after
T
2015-07-28 18:48:33 +03:00

13 lines
187 B
Plaintext
Vendored

interface T {
// INFO: {"checked": "true"}
val n: Int
}
class A: T {
// INFO: {"checked": "true"}
override val n: Int
constructor(a: Int) {
n = a + 1
}
}