Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6f1b95d296c5592d3a3e71cc638994fa2ba4e4f7
/
.
/
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
()