I was wondering if it’s possible to “mirror” a nes...
# announcements
d
I was wondering if it’s possible to “mirror” a nested class hierarchy within
typealias
E.g.
Copy code
class Parent { class Child }
typealias Dad = Parent

Parent.Child() // OK
Dad.Child() // Unresolved
🚫 2