package test
trait A {
class B {
}
}
You can use test.A#B to access class B in other class, for example:-
import test.A
type B = A#B
val b = new B
When you think you are superior, you are being an idiot...
package test
trait A {
class B {
}
}
import test.A
type B = A#B
val b = new B