Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
699829ccb3e80dbb53c10cccdf1e50f06a5c5346
/
.
/
compiler
/
testData
/
codegen
/
box
/
inlineClasses
/
overridingFunCallingPrivateFun.kt
blob: 1ca7d80d642a2bbb3080e7e4cdee872c13835306 [
file
]
// !LANGUAGE: +InlineClasses
interface
IFoo
{
fun foo
():
String
}
inline
class
IC
(
val x
:
String
)
:
IFoo
{
private
fun privateFun
()
=
x
override
fun foo
()
=
privateFun
()
}
fun box
():
String
{
val x
:
IFoo
=
IC
(
"OK"
)
return
x
.
foo
()
}