220141ab2b
(cherry picked from commit b620099)
7 lines
187 B
Kotlin
Vendored
7 lines
187 B
Kotlin
Vendored
// IS_APPLICABLE: false
|
|
|
|
class Owner(val z: Int) {
|
|
fun foo(y: Int) = y + z
|
|
// Possible only in 1.1 with bound references (this::foo)
|
|
val x = { arg: Int <caret> -> foo(arg) }
|
|
} |