33e6a85a2d
We exclude testData pattern from copyright scope
15 lines
363 B
Kotlin
Vendored
15 lines
363 B
Kotlin
Vendored
abstract class Foo {/* ClassDeclarationStructureElement */
|
|
abstract var id: Int/* DeclarationStructureElement */
|
|
protected set
|
|
}
|
|
|
|
class Bar : Foo() {/* ClassDeclarationStructureElement */
|
|
override var id: Int = 1/* DeclarationStructureElement */
|
|
public set
|
|
}
|
|
|
|
fun test() {/* DeclarationStructureElement */
|
|
val bar = Bar()
|
|
bar.id = 1
|
|
}
|