QQ on bound property references: will they support...
# language-proposals
d
QQ on bound property references: will they support delegation? Probably more of an stdlib question but I feel like the relevant operators are a natural addition:
Copy code
class Foo { var a = "hello" }
class Bar { val foo = Foo(); var a: String by foo::a }