mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
- have public visibility - have at most one back deployment version per-platform - specify an introduced version for each platform with a back deployment version using @available - have a back deployment version that is greater than the introduced version - not have conflicting attributes like @_alwaysEmitIntoClient Refactor to share code with type checking for @_originallyDefinedIn which has overlapping diagnostics.
39 lines
2.0 KiB
Swift
39 lines
2.0 KiB
Swift
// RUN: %empty-directory(%t)
|
|
|
|
// Ensure @_backDeploy attributes and function bodies are printed in
|
|
// swiftinterface files.
|
|
// RUN: %target-swiftc_driver -emit-module -o %t/Test.swiftmodule -emit-module-interface-path %t/Test.swiftinterface -enable-library-evolution -verify-emitted-module-interface -module-name Test %s
|
|
// RUN: %FileCheck %s --check-prefix FROMSOURCE --check-prefix CHECK < %t/Test.swiftinterface
|
|
|
|
// FIXME(backDeploy): Remove this step in favor of a test that exercises using
|
|
// a back deployed API from a test library so that we can avoid -merge-modules
|
|
|
|
// Ensure @_backDeploy attributes and function bodies are present after
|
|
// deserializing .swiftmodule files.
|
|
// RUN: %target-swift-frontend -emit-module -o /dev/null -merge-modules %t/Test.swiftmodule -disable-objc-attr-requires-foundation-module -emit-module-interface-path %t/TestFromModule.swiftinterface -module-name Test
|
|
// RUN: %FileCheck %s --check-prefix FROMMODULE --check-prefix CHECK < %t/TestFromModule.swiftinterface
|
|
|
|
public struct TopLevelStruct {
|
|
// CHECK: @_backDeploy(macOS 12.0)
|
|
// FROMSOURCE: public func backDeployedFunc1_SinglePlatform() -> Swift.Int { return 42 }
|
|
// FROMMODULE: public func backDeployedFunc1_SinglePlatform() -> Swift.Int
|
|
@available(macOS 11.0, *)
|
|
@_backDeploy(macOS 12.0)
|
|
public func backDeployedFunc1_SinglePlatform() -> Int { return 42 }
|
|
|
|
// CHECK: @_backDeploy(macOS 12.0)
|
|
// CHECK: @_backDeploy(iOS 15.0)
|
|
// FROMSOURCE: public func backDeployedFunc2_MultiPlatform() -> Swift.Int { return 43 }
|
|
// FROMMODULE: public func backDeployedFunc2_MultiPlatform() -> Swift.Int
|
|
@available(macOS 11.0, iOS 14.0, *)
|
|
@_backDeploy(macOS 12.0, iOS 15.0)
|
|
public func backDeployedFunc2_MultiPlatform() -> Int { return 43 }
|
|
}
|
|
|
|
// CHECK: @_backDeploy(macOS 12.0)
|
|
// FROMSOURCE: public func backDeployTopLevelFunc() -> Swift.Int { return 44 }
|
|
// FROMMODULE: public func backDeployTopLevelFunc() -> Swift.Int
|
|
@available(macOS 11.0, *)
|
|
@_backDeploy(macOS 12.0)
|
|
public func backDeployTopLevelFunc() -> Int { return 44 }
|