class Client(private val delegate: InternalClient)
- The compiler tells me , that i’m not allowed to use
InternalClient
as
val
because of it’s being exposed public.
But… the private should limit the visibility to other classes so no getter and no setter should be present, and it shouldn’t make any difference from compiler perspective,
since no user is ever allowed to invoke