Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
1f76d39e66b4ee8544feac93e4afd8e61ef9610a
/
.
/
compiler
/
testData
/
klibABI
/
removeAbstractPropertyFromInterface
/
main
/
m.kt
blob: 812710794cadaf273df7d7aea00a43908b6e2075 [
file
]
import
abitestutils
.
abiTest
import
lib1
.
A
import
lib2
.
B
fun box
()
=
abiTest
{
val a
:
A
=
B
()
expectFailure
(
nonImplementedCallable
(
"property accessor foo.<get-foo>"
,
"class B"
))
{
a
.
foo
}
}