aboutsummaryrefslogtreecommitdiff
path: root/test/data/properties/variablePropertyWithAccessors.kt
blob: 152fb7d0aecc41f7575814daaac2d66106f7c07b (plain)
1
2
3
4
var property: String
    get() = "test"
    set(value) {
    }