Files
kotlin-fork/idea/resources/intentionDescriptions/ConvertToApplyIntention/after.kt.template
T

7 lines
116 B
Plaintext

fun foo() {
<spot>val a = MyClass().apply {
setFoo(1)
setBar(2)
setBaz(3)
}</spot>
}