14 lines
182 B
Kotlin
Vendored
14 lines
182 B
Kotlin
Vendored
// FILE: kt36973.kt
|
|
import other.*
|
|
|
|
class C : IFoo
|
|
|
|
fun box() = C().foo()()
|
|
|
|
// FILE: IFoo.kt
|
|
package other
|
|
|
|
interface IFoo {
|
|
fun foo() = { bar() }
|
|
private fun bar() = "OK"
|
|
} |