eric239
05/19/2017, 4:43 PMBase
which doesn’t implement anything, and I want to create class Derived
which extends Base
and delegates to an instance of Base
. I know I can use regular java dynamic proxies; wondering if there’s a “kotlin” way.dalexander
05/19/2017, 4:55 PMBase
that you want Derived
to use, then delegate to the interface. There’s no way delegate to a class built in to the language.eric239
05/19/2017, 5:06 PM