mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
10 lines
262 B
Swift
10 lines
262 B
Swift
@available(OSX 1066.0, iOS 1066.0, watchOS 1066.0, tvOS 1066.0, *)
|
|
public protocol UnavailableSwiftProtocol {
|
|
func someMethod()
|
|
}
|
|
|
|
@available(OSX 1066.0, iOS 1066.0, watchOS 1066.0, tvOS 1066.0, *)
|
|
public class UnavailableSwiftClass {
|
|
func someMethod() {}
|
|
}
|