Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ec80c21fd118667fdb2e851da7eea5d76d95eb52
/
.
/
idea
/
testData
/
checker
/
PrimaryConstructors.kt
blob: d7398641832904c48ad4bd457c342ce5ea589d6e [
file
] [
log
] [
blame
]
// FIR_IDENTICAL
class
X
{
<error>
val x
:
Int
</
error
>
}
open
class
Y
()
{
val x
:
Int
=
2
}
class
Y1
{
val x
:
Int
get
()
=
1
}
class
Z
:
Y
()
{
}