Files
kotlin-fork/idea/testData/intentions/lambdaToAnonymousFunction/withPackage.kt
T

12 lines
124 B
Kotlin
Vendored

// WITH_RUNTIME
package test
data class My(val x: Int)
fun foo(f: () -> My) {}
fun test() {
foo <caret>{ My(42) }
}