11 lines
245 B
Plaintext
Vendored
11 lines
245 B
Plaintext
Vendored
// PARAM_TYPES: Z
|
|
// PARAM_DESCRIPTOR: public fun Z.foo(): kotlin.Int defined in root package in file implicitAndExplicitThisInExtension.kt
|
|
class Z(val a: Int)
|
|
|
|
// SIBLING:
|
|
fun Z.foo(): Int {
|
|
return i() + 1
|
|
}
|
|
|
|
private fun Z.i() = this.a + a
|