Files
kotlin-fork/compiler/testData/diagnostics/tests/dataClasses/conflictingCopyOverloads.fir.kt
T

6 lines
157 B
Kotlin
Vendored

// !DIAGNOSTICS: -UNUSED_PARAMETER
data class A(val x: Int, val y: String) {
fun copy(x: Int, y: String) = x
fun copy(x: Int, y: String) = A(x, y)
}