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

13 lines
190 B
Kotlin
Vendored

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