import A extension Impl : Proto { public func wellNow() { print("Impl conformance in C") } } public func checkAnyInC() { if let container = any as? Container { container.contained.wellNow() } else { print("check returned not Container in C") } }