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