10 lines
130 B
Plaintext
Vendored
10 lines
130 B
Plaintext
Vendored
// IS_APPLICABLE: true
|
|
|
|
class Owner(val z: Int) {
|
|
fun foo(y: Int) = y + z
|
|
}
|
|
|
|
fun bar(owner: Owner) {
|
|
val x = owner::foo
|
|
}
|