Consider something like this:
object Singleton
val cls: Class[Singleton] = ???
What do I have to write instead of ???
?
I tried classOf[Singleton]
, classOf[Singleton.type]
, Singleton.type
, but nothing worked.
(I know of course about getClass
, the runtime version of classOf
, but that's not what I'm asking.)