Files
kotlin-fork/idea/testData/quickfix/createFromUsage/createClass/callExpression/callInLambda.kt.after
T

12 lines
112 B
Plaintext
Vendored

// "Create class 'Foo'" "true"
fun <T> run(f: () -> T) = f()
fun test() {
run { Foo() }
}
class Foo {
}