mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
70 lines
2.7 KiB
Swift
70 lines
2.7 KiB
Swift
// RUN: %empty-directory(%t)
|
|
// RUN: %target-swift-emit-module-interface(%t/Test.swiftinterface) %s \
|
|
// RUN: -define-availability "_macOS12_1:macOS 12.1" \
|
|
// RUN: -define-availability "_myProject 1.0:macOS 12.1, iOS 15.1"
|
|
// RUN: %target-swift-typecheck-module-from-interface(%t/Test.swiftinterface)
|
|
// RUN: %FileCheck %s < %t/Test.swiftinterface
|
|
|
|
public struct TopLevelStruct {
|
|
// TODO: Print `@backDeployed` in swiftinterfaces (rdar://104920183)
|
|
// CHECK: @_backDeploy(before: macOS 12.0)
|
|
// CHECK: public func backDeployedFunc_SinglePlatform() -> Swift.Int { return 42 }
|
|
@backDeployed(before: macOS 12.0)
|
|
public func backDeployedFunc_SinglePlatform() -> Int { return 42 }
|
|
|
|
// CHECK: @_backDeploy(before: macOS 12.0, iOS 15.0)
|
|
// CHECK: public func backDeployedFunc_MultiPlatform() -> Swift.Int { return 43 }
|
|
@backDeployed(before: macOS 12.0, iOS 15.0)
|
|
public func backDeployedFunc_MultiPlatform() -> Int { return 43 }
|
|
|
|
// CHECK: @_backDeploy(before: macOS 12.0, iOS 15.0, watchOS 8.0, tvOS 15.0)
|
|
// CHECK: public func backDeployedFunc_MultiPlatformSeparate() -> Swift.Int { return 43 }
|
|
@backDeployed(before: macOS 12.0)
|
|
@backDeployed(before: iOS 15.0)
|
|
@backDeployed(before: watchOS 8.0)
|
|
@backDeployed(before: tvOS 15.0)
|
|
public func backDeployedFunc_MultiPlatformSeparate() -> Int { return 43 }
|
|
|
|
// CHECK: @_backDeploy(before: macOS 12.0)
|
|
// CHECK: public var backDeployedComputedProperty: Swift.Int {
|
|
// CHECK: get { 44 }
|
|
// CHECK: }
|
|
@backDeployed(before: macOS 12.0)
|
|
public var backDeployedComputedProperty: Int { 44 }
|
|
|
|
// CHECK: @_backDeploy(before: macOS 12.0)
|
|
// CHECK: public var backDeployedPropertyWithAccessors: Swift.Int {
|
|
// CHECK: get { 45 }
|
|
// CHECK: }
|
|
@backDeployed(before: macOS 12.0)
|
|
public var backDeployedPropertyWithAccessors: Int {
|
|
get { 45 }
|
|
}
|
|
|
|
// CHECK: @_backDeploy(before: macOS 12.0)
|
|
// CHECK: public subscript(index: Swift.Int) -> Swift.Int {
|
|
// CHECK: get { 46 }
|
|
// CHECK: }
|
|
@backDeployed(before: macOS 12.0)
|
|
public subscript(index: Int) -> Int {
|
|
get { 46 }
|
|
}
|
|
}
|
|
|
|
// CHECK: @_backDeploy(before: macOS 12.0)
|
|
// CHECK: public func backDeployTopLevelFunc1() -> Swift.Int { return 47 }
|
|
@backDeployed(before: macOS 12.0)
|
|
public func backDeployTopLevelFunc1() -> Int { return 47 }
|
|
|
|
// MARK: - Availability macros
|
|
|
|
// CHECK: @_backDeploy(before: macOS 12.1)
|
|
// CHECK: public func backDeployTopLevelFunc2() -> Swift.Int { return 48 }
|
|
@backDeployed(before: _macOS12_1)
|
|
public func backDeployTopLevelFunc2() -> Int { return 48 }
|
|
|
|
// CHECK: @_backDeploy(before: macOS 12.1, iOS 15.1)
|
|
// CHECK: public func backDeployTopLevelFunc3() -> Swift.Int { return 49 }
|
|
@backDeployed(before: _myProject 1.0)
|
|
public func backDeployTopLevelFunc3() -> Int { return 49 }
|