Files
kotlin-fork/idea/testData/intentions/convertLambdaToReference/defaultConstructor.kt
T
2017-03-14 18:45:04 +03:00

5 lines
78 B
Kotlin
Vendored

class Foo
fun usage(f: () -> Foo) {}
fun test() {
usage {<caret> Foo() }
}