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