blob: 22568b9f6603b861390e06890494aeeb0d4d7561 [file] [log] [blame]
class A(val n: Int) {
val <caret>foo: Boolean
get() = n > 1
}
fun test() {
val t = A(1).foo
}