Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
073a50037049a4e0869085bf4acf7c29e56210e3
/
.
/
compiler
/
testData
/
codegen
/
box
/
inlineClasses
/
overridingFunCallingPrivateFun.kt
blob: 1ca7d80d642a2bbb3080e7e4cdee872c13835306 [
file
] [
log
] [
blame
]
// !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
()
}