Files
kotlin-fork/idea/testData/intentions/anonymousFunctionToLambda/constructor.kt
T
2015-12-17 11:11:18 +03:00

7 lines
100 B
Kotlin
Vendored

class Foo(f: () -> Unit)
fun main(args: String) {
Foo(fun<caret>() {
val p = 1
})
}