```swift typealias FType = (Int) -> Void func f(_: @Sendable FType) { } ``` This yields: ``` error: @Sendable attribute only applies to function types func f(_: @Sendable FType) { ^ ```