mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-10 00:21:35 +00:00
9 lines
123 B
Kotlin
Vendored
9 lines
123 B
Kotlin
Vendored
// IGNORE_BACKEND_FIR: JVM_IR
|
|
class A
|
|
|
|
fun A.foo() = (A::bar)(this, "OK")
|
|
|
|
fun A.bar(x: String) = x
|
|
|
|
fun box() = A().foo()
|