mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-17 15:54:03 +00:00
26 lines
459 B
Kotlin
Vendored
26 lines
459 B
Kotlin
Vendored
class Foo {
|
|
fun foo() {}
|
|
}
|
|
|
|
class Bar {
|
|
fun bar() {}
|
|
}
|
|
|
|
fun Foo.test(bar: Bar) {
|
|
fun Bar.test() {
|
|
class Local {
|
|
fun run() {
|
|
foo()
|
|
bar()
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// JVM_TEMPLATES
|
|
// 1 final synthetic LMultipleExtensionReceiversKt\$test\$1; this\$0
|
|
// 1 final synthetic LBar; \$this_test
|
|
|
|
// JVM_IR_TEMPLATES
|
|
// 1 final synthetic LFoo; \$this_test
|
|
// 1 final synthetic LBar; \$this_test\$1 |