33e6a85a2d
We exclude testData pattern from copyright scope
14 lines
327 B
Kotlin
Vendored
14 lines
327 B
Kotlin
Vendored
/* RootScriptStructureElement */var x: Int = 10/* DeclarationStructureElement */
|
|
get() = field
|
|
set(value) {
|
|
field = value
|
|
}
|
|
|
|
class X {/* ClassDeclarationStructureElement */
|
|
var y: Int = 10/* DeclarationStructureElement */
|
|
get() = field
|
|
set(value) {
|
|
field = value
|
|
}
|
|
}
|