mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
13 lines
338 B
Swift
13 lines
338 B
Swift
// RUN: not %target-swift-frontend -typecheck %s
|
|
// REQUIRES: objc_interop
|
|
|
|
import Foundation.NSZone
|
|
|
|
@available(macOS 12, iOS 15, tvOS 15, watchOS 8, *)
|
|
@dynamicMemberLookup public struct AttributedSubstring : Sendable {
|
|
}
|
|
|
|
@available(macOS 12, iOS 15, tvOS 15, watchOS 8, *)
|
|
extension AttributedSubstring : AttributedStringProtocol {
|
|
}
|