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

12 lines
111 B
Plaintext
Vendored

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