Files
kotlin-fork/idea/testData/quickfix/createFromUsage/createClass/callExpression/afterCallWithLambdaArgOnly.kt
T
2015-04-07 13:08:53 +03:00

10 lines
130 B
Kotlin

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