Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
dataClasses
/
conflictingOverloads.kt
blob: 7f2d3ea85ad9fbe1746d76a1ea5a5e78ce2850a3 [
file
]
data
class
A
(
val x
:
Int
,
val y
:
String
)
{
<!
CONFLICTING_OVERLOADS
!>
fun component1
()<!>
=
1
<!
CONFLICTING_OVERLOADS
!>
fun component2
()<!>
=
2
}