Files
kotlin-fork/idea/testData/intentions/convertParameterToReceiver/classParameter.kt
T

8 lines
96 B
Kotlin
Vendored

// IS_APPLICABLE: false
class Foo(<caret>s: String, n: Int) {
}
fun test() {
Foo("1", 2)
}