10 lines
81 B
Kotlin
Vendored
10 lines
81 B
Kotlin
Vendored
class A {
|
|
val foo: Int = 0
|
|
}
|
|
|
|
fun f() {
|
|
A().foo(<caret>)
|
|
}
|
|
|
|
// NUMBER: 0
|