ca16f4231f
#KT-4940 Fixed
12 lines
129 B
Plaintext
12 lines
129 B
Plaintext
// PARAM_TYPES: Z
|
|
class Z(val a: Int)
|
|
|
|
// SIBLING:
|
|
fun Z.foo(): Int {
|
|
return i() + 1
|
|
}
|
|
|
|
fun Z.i(): Int {
|
|
return this.a
|
|
}
|