Function returns interface
Pablo
kotlin
3 years ago
165 B
6
Indexable
interface AInterface{} fun interfaceReturningFunction(): Unit { return AInterface // ! - not AClass() or AInterface(), but only class name, without parenthesis. }
Editor is loading...