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