I am trying to make a typealias of a generic type class as follows
class Cars { ... } typealias SportCars = Cars
but I am getting a
Possible workaround is to wrap type alias into class/struct:
struct SportCars { typealias T = Cars } /// Usage: typealias Foo = SportCars.T