Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
67ac90ce0868ee0c9cd08d72460f16efecded549
/
.
/
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