dd24fd47f7
- locals win - drop old invokeExtension convention
10 lines
94 B
Kotlin
Vendored
10 lines
94 B
Kotlin
Vendored
class Bar {
|
|
}
|
|
|
|
class Foo() {
|
|
fun Bar.invoke() {}
|
|
}
|
|
|
|
fun Foo.foobar(bar: Bar) {
|
|
bar()
|
|
} |