Files
kotlin-fork/idea/testData/inspectionsLocal/copyWithoutNamedArguments/notAllNamed.kt
T
2017-05-10 17:43:44 +03:00

5 lines
113 B
Kotlin
Vendored

data class SomeName(val a: Int, val b: Int, val c: String)
fun foo(f: SomeName) {
f.<caret>copy(2, c = "")
}