Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
analysis
/
low-level-api-fir
/
testData
/
fileStructure
/
classMemberProperty.kt
blob: fbd08ff401ce628db67f4ac8e3e36e7f8b13980e [
file
]
class
X
{
/* ClassDeclarationStructureElement */
var
x
:
Int
/* DeclarationStructureElement */
get
()
=
field
set
(
value
)
{
field
=
value
}
val y
=
42
/* DeclarationStructureElement */
var
z
:
Int
=
15
/* DeclarationStructureElement */
}