Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
dataClasses
/
conflictingCopyOverloads.fir.kt
blob: 078691c47111f2322523d64e1b0c81f03804ff1d [
file
]
// DIAGNOSTICS: -UNUSED_PARAMETER
data
class
<!
CONFLICTING_OVERLOADS
!>
A
(
val x
:
Int
,
val y
:
String
)<!>
{
<!
CONFLICTING_OVERLOADS
!>
fun copy
(
x
:
Int
,
y
:
String
)<!>
=
x
<!
CONFLICTING_OVERLOADS
!>
fun copy
(
x
:
Int
,
y
:
String
)<!>
=
A
(
x
,
y
)
}