import Foundation protocol Animal {} struct Cat: Animal {} print((Cat() as! AnyObject) as? Animal) print((Cat() as! AnyObject) as? Cat)