Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
1f76d39e66b4ee8544feac93e4afd8e61ef9610a
/
.
/
compiler
/
testData
/
klibABI
/
removeAbstractFunctionFromInterface
/
main
/
m.kt
blob: f500a7be4d8d6348280ca54d3b0ad8031cefbd70 [
file
]
import
abitestutils
.
abiTest
import
lib1
.
A
import
lib2
.
B
fun box
()
=
abiTest
{
val a
:
A
=
B
()
expectFailure
(
nonImplementedCallable
(
"function foo"
,
"class B"
))
{
a
.
foo
()
}
}