Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
cae7f90b594750d624e94b3325571f4b5ebff2f0
/
.
/
compiler
/
testData
/
klibABI
/
noNonImplementedCallableFalsePositives
/
main
/
m.kt
blob: ad56433be107fcb4bb36becccc45ae12f06c7287 [
file
] [
log
] [
blame
]
import
abitestutils
.
abiTest
import
lib
.
C
fun box
()
=
abiTest
{
val c
=
C
()
expectSuccess
(
42
)
{
c
.
f
()
}
expectSuccess
(
2
)
{
c
.
p1
}
expectSuccess
(-
1
)
{
c
.
p2
}
expectSuccess
(-
84
)
{
c
.
compute
()
}
}