Files
kotlin-fork/idea/testData/quickfix/createFromUsage/createClass/callExpression/beforeCallWithLambdaArg.kt
T
2014-11-11 14:42:45 +03:00

5 lines
99 B
Kotlin

// "Create class 'Foo'" "true"
fun test() {
val a = <caret>Foo(2, "2") { (p: Int) -> p + 1 }
}