Files
kotlin-fork/compiler/testData/codegen/box/builtinStubMethods/dontGenerateBodyInTrait.kt
T
2015-05-12 19:43:17 +02:00

11 lines
229 B
Kotlin
Vendored

interface A : Collection<String>
interface B : List<String>
interface C : Map<Long, Double>
interface D : Map.Entry<Any, Nothing>
interface E : Iterator<Int>
fun box(): String {
interface F : A, B, C, D, E
return "OK"
}