mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
```swift
class A<T> {
}
class B<U> : A<U> {
}
func test(v: any B<Int> & Sendable) {
_ = v as A // infers `Int` for `A.T`
}
```
613 KiB
613 KiB