15 lines
190 B
Kotlin
Vendored
15 lines
190 B
Kotlin
Vendored
fun log(s: String) {
|
|
}
|
|
|
|
class A {
|
|
var x: String
|
|
get() {
|
|
log(field)
|
|
return field
|
|
}
|
|
|
|
<caret>constructor(x: String) {
|
|
this.x = x
|
|
}
|
|
}
|