Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
534b00eff856e0e4dcaf105df9a043d9b1263ff7
/
.
/
compiler
/
testData
/
codegen
/
box
/
traits
/
indirectlyInheritPropertyGetter.kt
blob: 75cde1daa46e329185bbe4016b89feed41052083 [
file
]
interface
A
{
val str
:
String
get
()
=
"OK"
}
interface
B
:
A
class
Impl
:
B
fun box
()
=
Impl
().
str