4 lines
84 B
Kotlin
Vendored
4 lines
84 B
Kotlin
Vendored
class Owner(val z: Int) {
|
|
fun foo(y: Int) = y + z
|
|
val x = <caret>this::foo
|
|
} |