Skip to content

Commit 116d98e

Browse files
committed
docs update
1 parent ad9119f commit 116d98e

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

test/Inputs/clang-importer-sdk/swift-modules-concurrency-consuming-job-param/_Concurrency.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

2-
// This simulates a pre-Swift5.9 concurrency library with `Job` and `ExecutorJob` not being defined at all.
3-
// This is used to verify missing type handling in the SDK when a latest compiler is used.
2+
// This simulates a pre-Swift5.9 concurrency library with an consuming declaration rather than __owned.
3+
// This allows us to confirm the compiler and sdk can be mismatched but we'll build correctly.
44

55
@_moveOnly
66
public struct ExecutorJob {}

test/Inputs/clang-importer-sdk/swift-modules-concurrency-owned-job-param/_Concurrency.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

2-
// This simulates a pre-Swift5.9 concurrency library with `Job` and `ExecutorJob` not being defined at all.
3-
// This is used to verify missing type handling in the SDK when a latest compiler is used.
2+
// This simulates a pre-Swift5.9 concurrency library with an __owned declaration rather than consuming.
3+
// This allows us to confirm the compiler and sdk can be mismatched but we'll build correctly.
44

55
@_moveOnly
66
public struct ExecutorJob {}

0 commit comments

Comments
 (0)