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

9 lines
108 B
Kotlin
Vendored

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