Files
kotlin-fork/idea/testData/quickfix/moveToConstructorParameters/memberPropertyInClassWithPrimaryConstructor.kt
T
2015-11-16 11:30:02 +03:00

12 lines
178 B
Kotlin
Vendored

// "Move to constructor parameters" "true"
open class A(s: String) {
<caret>val n: Int
constructor(a: Int): this("")
}
class B : A("")
fun test() {
val a = A("")
}