Files
kotlin-fork/compiler/testData/cfg/conventions/bothReceivers.kt
T
Stanislav Erokhin dd24fd47f7 Update control flow test data for tower resolution algorithm
- locals win
- drop old invokeExtension convention
2015-12-11 17:01:02 +03:00

10 lines
94 B
Kotlin
Vendored

class Bar {
}
class Foo() {
fun Bar.invoke() {}
}
fun Foo.foobar(bar: Bar) {
bar()
}