aboutsummaryrefslogtreecommitdiff
path: root/test/data/format/accessor.kt
blob: 5a4d1742ad21869e94a713f5b825f3e639bf36d7 (plain)
1
2
3
4
5
class C() {
    var x: String
        /** The getter returns an empty string. */ get() = ""
        /** The setter does nothing. */ set(value) { }
}