33e6a85a2d
We exclude testData pattern from copyright scope
12 lines
312 B
Kotlin
Vendored
12 lines
312 B
Kotlin
Vendored
/* RootScriptStructureElement */class X {/* ClassDeclarationStructureElement */
|
|
var x: Int/* DeclarationStructureElement */
|
|
get() = field
|
|
set(value) {
|
|
field = value
|
|
}
|
|
|
|
val y = 42/* DeclarationStructureElement */
|
|
|
|
var z: Int = 15/* DeclarationStructureElement */
|
|
}
|