Files
kotlin-fork/native/native.tests/testData/caches/ic/addMethodToInterface2/main/main.kt
T

13 lines
193 B
Kotlin
Vendored

import kotlin.test.*
import test1.*
import test2.*
class JImpl : J {
override fun foo() = 42
override fun bar() = "zzz"
}
@Test
fun runTest() {
assertEquals("zzz", bar(JImpl()))
}