Files
kotlin-fork/idea/testData/inspections/destructuringWrongName/test.kt
T

5 lines
96 B
Kotlin
Vendored

data class Foo(val a: String, val b: Int, val c: String)
fun bar(f: Foo) {
val (a, c) = f
}