Files

8 lines
98 B
Kotlin
Vendored

class Foo {
val foo: String
get() = "foo"
}
fun test(foo: Foo) {
foo.<caret>foo
}