Files
kotlin-fork/idea/resources/intentionDescriptions/JoinDeclarationAndAssignmentIntention/before.kt.template
T

8 lines
73 B
Plaintext

class A {
var i: Int
init {
<spot>i = 5</spot>
}
}