Files
kotlin/compiler/testData/codegen/boxMultiFile/kt9958Interface/a.kt
2015-12-12 11:41:35 +03:00

18 lines
175 B
Kotlin
Vendored

package a
import b.*
interface B {
companion object : A() {}
fun test() {
foo()
}
}
class C : B
fun box(): String {
C().test()
return result
}