Avatar
omochimetaru 1/28/2020 8:13 AM
@swiftbot protocol Animal {} class Cat: Animal {} class Dog: Animal {} let a = [Cat(), Dog()] print(type(of: a))