Files
kotlin-fork/idea/testData/intentions/convertLambdaToReference/constructor.kt
T
Mikhail Glukhikh 220141ab2b Convert lambda to callable reference intention / inspection #KT-10903 Fixed
(cherry picked from commit b620099)
2016-07-18 17:10:15 +03:00

5 lines
104 B
Kotlin
Vendored

// WITH_RUNTIME
class Person(val name: String)
val x = listOf("Jack", "Tom").map <caret>{ Person(it) }