Files
kotlin/idea/testData/quickfix/createFromUsage/createClass/callExpression/afterCallInLocalFunNoReceiver.kt

10 lines
117 B
Kotlin

// "Create class 'Foo'" "true"
fun test() {
fun nestedTest() = Foo(2, "2")
}
class Foo(i: Int, s: String) {
}