interface A class B : A class C(b: A) : A by b ...
# announcements
m
interface A class B : A class C(b: A) : A by b class C(val b: A) : A by b Now what is the difference between making the delegate a parameter and property. I am able to access methods on A interface both ways?