Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
e1e07d20949869a38f2fc0b6ceeea1235721f07f
/
.
/
compiler
/
testData
/
klibABI
/
removeAbstractFunctionFromAbstractClass
/
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
()
}
}