10 lines
139 B
Kotlin
Vendored
10 lines
139 B
Kotlin
Vendored
class A(val n: Int) {
|
|
val <caret>foo: Boolean
|
|
get() {
|
|
return n > 1
|
|
}
|
|
}
|
|
|
|
fun test() {
|
|
val t = A(1).foo
|
|
} |