Files
kotlin-fork/idea/testData/quickfix/createFromUsage/createClass/callExpression/afterCallInLocalFunNoReceiver.kt
T
2014-11-11 14:42:45 +03:00

9 lines
116 B
Kotlin

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