Dom
06/13/2020, 6:30 PMthis
as a parameter to an interface delegate?
interface A
class B(private val c : C) : A
class C : A by B(this)
produces an error saying that "`this` is not defined in this context". Is there a workaround for this?Sam Garfinkel
06/13/2020, 8:00 PMSandesh Baliga
06/13/2020, 8:35 PMDom
06/13/2020, 11:36 PMHanno
06/14/2020, 11:28 AM