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

10 lines
118 B
Kotlin
Vendored

class A {
constructor() {
val foo: String<caret>
bar()
foo = ""
}
fun bar() {}
}