Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
codegen
/
box
/
regressions
/
kt13381.kt
blob: b424d596455de3cbfc921785aa61518aea53fecb [
file
]
interface
A
{
// There must be no delegation methods for 'log' and 'bar' in C as they are private
private
val log
:
String
get
()
=
"O"
private
fun bar
()
=
"K"
fun foo
()
=
log
+
bar
()
}
interface
B
:
A
class
C
:
B
fun box
()
=
C
().
foo
()