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

10 lines
98 B
Kotlin

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