Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
4f8dad3e4ba00e23b4182ef4c50194b20bd43c8f
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
dataClasses
/
notADataClass.kt
blob: f5d0ada181de793da8bf2811cc6ff71a511aeb1c [
file
]
// FIR_IDENTICAL
class
A
(
val x
:
Int
,
val y
:
String
)
fun foo
(
a
:
A
)
{
a
.<!
UNRESOLVED_REFERENCE
!>
component1
<!>()
a
.<!
UNRESOLVED_REFERENCE
!>
component2
<!>()
}