9 lines
106 B
Plaintext
Vendored
9 lines
106 B
Plaintext
Vendored
// IS_APPLICABLE: true
|
|
|
|
class Owner(val z: Int) {
|
|
val x = this::foo
|
|
}
|
|
|
|
fun Owner.foo(y: Int) = y + z
|
|
|