9 lines
181 B
Kotlin
Vendored
9 lines
181 B
Kotlin
Vendored
import abitestutils.abiTest
|
|
import lib1.A
|
|
import lib2.B
|
|
|
|
fun box() = abiTest {
|
|
val a: A = B()
|
|
expectFailure(nonImplementedCallable("function foo", "class B")) { a.foo() }
|
|
}
|