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

4 lines
87 B
Plaintext

class Person(val name: String)
val persons = listOf("Jack", "Tom").map { Person(it) }