Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
67ac90ce0868ee0c9cd08d72460f16efecded549
/
.
/
compiler
/
testData
/
codegen
/
box
/
properties
/
kt2786.kt
blob: 003ca536275517878464910ee9e906dd781d23ab [
file
]
interface
FooTrait
{
val propertyTest
:
String
}
class
FooDelegate
:
FooTrait
{
override
val propertyTest
:
String
=
"OK"
}
class
DelegateTest
():
FooTrait
by
FooDelegate
()
{
fun test
()
=
propertyTest
}
fun box
()
=
DelegateTest
().
test
()