Files
kotlin-fork/analysis/low-level-api-fir/testdata/fileStructure/propertyAccessorsScript.kts
T
2023-07-27 12:02:04 +00:00

14 lines
247 B
Kotlin

/* NonReanalyzableNonClassDeclarationStructureElement */var x: Int = 10
get() = field
set(value) {
field = value
}
class X {
var y: Int = 10
get() = field
set(value) {
field = value
}
}