Avatar
<stdin>:2:11: warning: 'is' test is always true <stdin>:2:11: error: marker protocol 'Sendable' cannot be used in a conditional cast ↑2行で矛盾してて凄いな
1:18 PM
@swift-5.7.3 protocol P { } struct S<T> {} extension S: P where T: Sendable {} func main(_ a: Any) { if let p = a as? any P { print(1) } else { print(2) } } main((1, 2))