File tree 3 files changed +27
-0
lines changed
Tests/AsyncAlgorithmsTests/Support
3 files changed +27
-0
lines changed Original file line number Diff line number Diff line change 13
13
uses : swiftlang/github-workflows/.github/workflows/soundness.yml@main
14
14
with :
15
15
license_header_check_project_name : " Swift Async Algorithms"
16
+ format_check_container_image : " swift:6.0.3-noble"
Original file line number Diff line number Diff line change
1
+ //===----------------------------------------------------------------------===//
2
+ //
3
+ // This source file is part of the Swift Async Algorithms open source project
4
+ //
5
+ // Copyright (c) 2025 Apple Inc. and the Swift project authors
6
+ // Licensed under Apache License v2.0 with Runtime Library Exception
7
+ //
8
+ // See https://swift.org/LICENSE.txt for license information
9
+ //
10
+ //===----------------------------------------------------------------------===//
11
+
12
+ #if compiler(>=6.0)
1
13
import AsyncAlgorithms
2
14
3
15
@available ( macOS 15 . 0 , * )
@@ -65,3 +77,6 @@ struct Example {
65
77
}
66
78
}
67
79
}
80
+ #else
81
+ fatalError ( " Example only supports Swift 6.0 and above " )
82
+ #endif
Original file line number Diff line number Diff line change
1
+ //===----------------------------------------------------------------------===//
2
+ //
3
+ // This source file is part of the Swift Async Algorithms open source project
4
+ //
5
+ // Copyright (c) 2025 Apple Inc. and the Swift project authors
6
+ // Licensed under Apache License v2.0 with Runtime Library Exception
7
+ //
8
+ // See https://swift.org/LICENSE.txt for license information
9
+ //
10
+ //===----------------------------------------------------------------------===//
11
+
1
12
import DequeModule
2
13
import Synchronization
3
14
You can’t perform that action at this time.
0 commit comments