Files
kotlin-fork/idea/testData/intentions/joinDeclarationAndAssignment/singleConstructor.kt
T
2019-09-27 09:16:52 +03:00

11 lines
107 B
Kotlin
Vendored

class A {
constructor() {
a = 1
foo()
}
val a<caret>: Int
fun foo() {}
}