Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
534b00eff856e0e4dcaf105df9a043d9b1263ff7
/
.
/
compiler
/
testData
/
codegen
/
box
/
traits
/
privateInterfaceMethod.kt
blob: b8fae1e68ae5203570dd37830359d93ed7cce8de [
file
]
interface
A
{
private
fun foo
()
=
"OK"
public
fun bar
()
=
foo
()
}
class
B
:
A
{
private
fun foo
()
=
"fail"
}
fun box
()
=
B
().
bar
()