How do you use delegation and a where clause? ```interface F class B<T>(t: T) : F by t where T...
h
How do you use delegation and a where clause?
Copy code
interface F
class B<T>(t: T) : F by t where T : F