1 class C() { 2 var x: String 3 /** The getter returns an empty string. */ get() = "" 4 /** The setter does nothing. */ set(value) { } 5 } 6