Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
codegen
/
box
/
regressions
/
kt4142.kt
blob: d7fe122fda797521e09970e31b04eaa9bd27a5ab [
file
]
open
class
B
{
val name
:
String
get
()
=
"OK"
}
interface
A
{
val name
:
String
}
class
C
:
B
(),
A
{
}
fun box
():
String
{
return
C
().
name
}