7 lines
71 B
Kotlin
Vendored
7 lines
71 B
Kotlin
Vendored
interface IFoo {
|
|
fun foo()
|
|
}
|
|
|
|
fun outer() {
|
|
fun IFoo.foo() {}
|
|
} |