The Swift Package Index logo.Swift Package Index

Track the adoption of Swift 6 strict concurrency checks for data race safety. How many packages are Ready for Swift 6?

Build Information

Failed to build jpeg, reference master (93f2cc), with Swift 6.0 for Linux on 15 Sep 2024 05:03:01 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.0-latest swift build --triple x86_64-unknown-linux-gnu -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete 2>&1

Build Log

========================================
RunAll
========================================
Builder version: 4.53.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/valeriyvan/jpeg.git
Reference: master
Initialized empty Git repository in /host/spi-builder-workspace/.git/
hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: 	git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: 	git branch -m <name>
From https://github.com/valeriyvan/jpeg
 * branch            master     -> FETCH_HEAD
 * [new branch]      master     -> origin/master
HEAD is now at 93f2cca Fix compile errors in Xcode 16 beta 2 (#17)
Cloned https://github.com/valeriyvan/jpeg.git
Revision (git rev-parse @):
93f2ccacba9da9a21a0c4566f494839e55d833b0
SUCCESS checkout https://github.com/valeriyvan/jpeg.git at master
========================================
Build
========================================
Selected platform:         linux
Swift version:             6.0
Building package at path:  $PWD
https://github.com/valeriyvan/jpeg.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.0-latest swift build --triple x86_64-unknown-linux-gnu -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete 2>&1
basic-6.0-latest: Pulling from finestructure/spi-images
Digest: sha256:9d7dab235f2b0b46edadd73b1fb0c3b5323df02053420324a4a2f8ca89cb54a5
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.0-latest
Building for debugging...
[0/59] Write sources
[15/59] Write swift-version-24593BA9C3E375BF.txt
[17/67] Compiling JPEG jpeg.swift
[18/68] Emitting module JPEG
/host/spi-builder-workspace/sources/jpeg/error.swift:161:14: warning: associated value 'truncatedMarkerSegmentBody(_:_:expected:)' of 'Sendable'-conforming enum 'ParsingError' has non-sendable type 'JPEG.Marker'; this is an error in the Swift 6 language mode
159 |         /// - expected  : Swift.ClosedRange<Swift.Int>
160 |         ///     The range of marker segment sizes that was expected, in bytes.
161 |         case truncatedMarkerSegmentBody(Marker, Int, expected:ClosedRange<Int>)
    |              `- warning: associated value 'truncatedMarkerSegmentBody(_:_:expected:)' of 'Sendable'-conforming enum 'ParsingError' has non-sendable type 'JPEG.Marker'; this is an error in the Swift 6 language mode
162 |         /// case JPEG.ParsingError.extraneousMarkerSegmentData(_:_:expected:)
163 |         ///     A marker segment contained more than the expected amount of data.
/host/spi-builder-workspace/sources/jpeg/jpeg.swift:684:10: note: consider making enum 'Marker' conform to the 'Sendable' protocol
 682 |     /// ## (3:lexing-and-formatting)
 683 |     public
 684 |     enum Marker
     |          `- note: consider making enum 'Marker' conform to the 'Sendable' protocol
 685 |     {
 686 |         /// case JPEG.Marker.start
/host/spi-builder-workspace/sources/jpeg/error.swift:170:14: warning: associated value 'extraneousMarkerSegmentData(_:_:expected:)' of 'Sendable'-conforming enum 'ParsingError' has non-sendable type 'JPEG.Marker'; this is an error in the Swift 6 language mode
168 |         /// - expected  : Swift.Int
169 |         ///     The amount of data that was expected, in bytes.
170 |         case extraneousMarkerSegmentData(Marker, Int, expected:Int)
    |              `- warning: associated value 'extraneousMarkerSegmentData(_:_:expected:)' of 'Sendable'-conforming enum 'ParsingError' has non-sendable type 'JPEG.Marker'; this is an error in the Swift 6 language mode
171 |         /// case JPEG.ParsingError.invalidJFIFSignature(_:)
172 |         ///     A JFIF segment had an invalid signature.
/host/spi-builder-workspace/sources/jpeg/jpeg.swift:684:10: note: consider making enum 'Marker' conform to the 'Sendable' protocol
 682 |     /// ## (3:lexing-and-formatting)
 683 |     public
 684 |     enum Marker
     |          `- note: consider making enum 'Marker' conform to the 'Sendable' protocol
 685 |     {
 686 |         /// case JPEG.Marker.start
/host/spi-builder-workspace/sources/jpeg/error.swift:208:14: warning: associated value 'invalidFramePrecision' of 'Sendable'-conforming enum 'ParsingError' has non-sendable type 'JPEG.Process'; this is an error in the Swift 6 language mode
206 |         /// - _ : JPEG.Process
207 |         ///     The coding process specified by the frame header.
208 |         case invalidFramePrecision(Int, Process)
    |              `- warning: associated value 'invalidFramePrecision' of 'Sendable'-conforming enum 'ParsingError' has non-sendable type 'JPEG.Process'; this is an error in the Swift 6 language mode
209 |         /// case JPEG.ParsingError.invalidFrameComponentCount(_:_:)
210 |         ///     A frame header segment had an invalid number of components.
/host/spi-builder-workspace/sources/jpeg/jpeg.swift:619:10: note: consider making enum 'Process' conform to the 'Sendable' protocol
 617 |     /// ## (4:lexing-and-formatting)
 618 |     public
 619 |     enum Process
     |          `- note: consider making enum 'Process' conform to the 'Sendable' protocol
 620 |     {
 621 |         /// enum JPEG.Process.Coding
/host/spi-builder-workspace/sources/jpeg/error.swift:215:14: warning: associated value 'invalidFrameComponentCount' of 'Sendable'-conforming enum 'ParsingError' has non-sendable type 'JPEG.Process'; this is an error in the Swift 6 language mode
213 |         /// - _ : JPEG.Process
214 |         ///     The coding process specified by the frame header.
215 |         case invalidFrameComponentCount(Int, Process)
    |              `- warning: associated value 'invalidFrameComponentCount' of 'Sendable'-conforming enum 'ParsingError' has non-sendable type 'JPEG.Process'; this is an error in the Swift 6 language mode
216 |         /// case JPEG.ParsingError.invalidFrameQuantizationSelectorCode(_:)
217 |         ///     A component in a frame header segment had an invalid quantization
/host/spi-builder-workspace/sources/jpeg/jpeg.swift:619:10: note: consider making enum 'Process' conform to the 'Sendable' protocol
 617 |     /// ## (4:lexing-and-formatting)
 618 |     public
 619 |     enum Process
     |          `- note: consider making enum 'Process' conform to the 'Sendable' protocol
 620 |     {
 621 |         /// enum JPEG.Process.Coding
/host/spi-builder-workspace/sources/jpeg/error.swift:229:14: warning: associated value 'invalidFrameQuantizationSelector' of 'Sendable'-conforming enum 'ParsingError' has non-sendable type 'JPEG.Table.Quantization.Selector' (aka 'WritableKeyPath<(Optional<(q: Int, qi: JPEG.Table.Quantization.Key)>, Optional<(q: Int, qi: JPEG.Table.Quantization.Key)>, Optional<(q: Int, qi: JPEG.Table.Quantization.Key)>, Optional<(q: Int, qi: JPEG.Table.Quantization.Key)>), Optional<(q: Int, qi: JPEG.Table.Quantization.Key)>>'); this is an error in the Swift 6 language mode
227 |         /// - _ : JPEG.Process
228 |         ///     The coding process specified by the frame header.
229 |         case invalidFrameQuantizationSelector(JPEG.Table.Quantization.Selector, Process)
    |              `- warning: associated value 'invalidFrameQuantizationSelector' of 'Sendable'-conforming enum 'ParsingError' has non-sendable type 'JPEG.Table.Quantization.Selector' (aka 'WritableKeyPath<(Optional<(q: Int, qi: JPEG.Table.Quantization.Key)>, Optional<(q: Int, qi: JPEG.Table.Quantization.Key)>, Optional<(q: Int, qi: JPEG.Table.Quantization.Key)>, Optional<(q: Int, qi: JPEG.Table.Quantization.Key)>), Optional<(q: Int, qi: JPEG.Table.Quantization.Key)>>'); this is an error in the Swift 6 language mode
230 |         /// case JPEG.ParsingError.invalidFrameComponentSamplingFactor(_:_:)
231 |         ///     A component in a frame header had an invalid sampling factor.
Swift.WritableKeyPath:1:14: note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
1 | public class WritableKeyPath<Root, Value> : KeyPath<Root, Value> {
  |              `- note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
/host/spi-builder-workspace/sources/jpeg/error.swift:229:14: warning: associated value 'invalidFrameQuantizationSelector' of 'Sendable'-conforming enum 'ParsingError' has non-sendable type 'JPEG.Process'; this is an error in the Swift 6 language mode
227 |         /// - _ : JPEG.Process
228 |         ///     The coding process specified by the frame header.
229 |         case invalidFrameQuantizationSelector(JPEG.Table.Quantization.Selector, Process)
    |              `- warning: associated value 'invalidFrameQuantizationSelector' of 'Sendable'-conforming enum 'ParsingError' has non-sendable type 'JPEG.Process'; this is an error in the Swift 6 language mode
230 |         /// case JPEG.ParsingError.invalidFrameComponentSamplingFactor(_:_:)
231 |         ///     A component in a frame header had an invalid sampling factor.
/host/spi-builder-workspace/sources/jpeg/jpeg.swift:619:10: note: consider making enum 'Process' conform to the 'Sendable' protocol
 617 |     /// ## (4:lexing-and-formatting)
 618 |     public
 619 |     enum Process
     |          `- note: consider making enum 'Process' conform to the 'Sendable' protocol
 620 |     {
 621 |         /// enum JPEG.Process.Coding
/host/spi-builder-workspace/sources/jpeg/error.swift:238:14: warning: associated value 'invalidFrameComponentSamplingFactor' of 'Sendable'-conforming enum 'ParsingError' has non-sendable type 'JPEG.Component.Key'; this is an error in the Swift 6 language mode
236 |         /// - _ : JPEG.Component.Key
237 |         ///     The component key.
238 |         case invalidFrameComponentSamplingFactor((x:Int, y:Int), Component.Key)
    |              `- warning: associated value 'invalidFrameComponentSamplingFactor' of 'Sendable'-conforming enum 'ParsingError' has non-sendable type 'JPEG.Component.Key'; this is an error in the Swift 6 language mode
239 |         /// case JPEG.ParsingError.duplicateFrameComponentIndex(_:)
240 |         ///     The same component key occurred more than once in the same frame header.
/host/spi-builder-workspace/sources/jpeg/jpeg.swift:1107:16: note: consider making struct 'Key' conform to the 'Sendable' protocol
1105 |         /// ## (2:image-structure-and-decomposition)
1106 |         public
1107 |         struct Key:Hashable, Comparable
     |                `- note: consider making struct 'Key' conform to the 'Sendable' protocol
1108 |         {
1109 |             let value:Int
/host/spi-builder-workspace/sources/jpeg/error.swift:243:14: warning: associated value 'duplicateFrameComponentIndex' of 'Sendable'-conforming enum 'ParsingError' has non-sendable type 'JPEG.Component.Key'; this is an error in the Swift 6 language mode
241 |         /// - _ : JPEG.Component.Key
242 |         ///     The duplicated component key.
243 |         case duplicateFrameComponentIndex(Component.Key)
    |              `- warning: associated value 'duplicateFrameComponentIndex' of 'Sendable'-conforming enum 'ParsingError' has non-sendable type 'JPEG.Component.Key'; this is an error in the Swift 6 language mode
244 |
245 |         /// case JPEG.ParsingError.invalidScanHuffmanSelectorCode(_:)
/host/spi-builder-workspace/sources/jpeg/jpeg.swift:1107:16: note: consider making struct 'Key' conform to the 'Sendable' protocol
1105 |         /// ## (2:image-structure-and-decomposition)
1106 |         public
1107 |         struct Key:Hashable, Comparable
     |                `- note: consider making struct 'Key' conform to the 'Sendable' protocol
1108 |         {
1109 |             let value:Int
/host/spi-builder-workspace/sources/jpeg/error.swift:258:14: warning: associated value 'invalidScanHuffmanDCSelector' of 'Sendable'-conforming enum 'ParsingError' has non-sendable type 'JPEG.Table.HuffmanDC.Selector' (aka 'WritableKeyPath<(Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.DC>>, Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.DC>>, Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.DC>>, Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.DC>>), Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.DC>>>'); this is an error in the Swift 6 language mode
256 |         /// - _ : JPEG.Process
257 |         ///     The coding process specified by the frame header.
258 |         case invalidScanHuffmanDCSelector(JPEG.Table.HuffmanDC.Selector, Process)
    |              `- warning: associated value 'invalidScanHuffmanDCSelector' of 'Sendable'-conforming enum 'ParsingError' has non-sendable type 'JPEG.Table.HuffmanDC.Selector' (aka 'WritableKeyPath<(Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.DC>>, Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.DC>>, Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.DC>>, Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.DC>>), Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.DC>>>'); this is an error in the Swift 6 language mode
259 |         /// case JPEG.ParsingError.invalidScanHuffmanACSelector(_:_:)
260 |         ///     A component in a frame header segment used an AC huffman table
Swift.WritableKeyPath:1:14: note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
1 | public class WritableKeyPath<Root, Value> : KeyPath<Root, Value> {
  |              `- note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
/host/spi-builder-workspace/sources/jpeg/error.swift:258:14: warning: associated value 'invalidScanHuffmanDCSelector' of 'Sendable'-conforming enum 'ParsingError' has non-sendable type 'JPEG.Process'; this is an error in the Swift 6 language mode
256 |         /// - _ : JPEG.Process
257 |         ///     The coding process specified by the frame header.
258 |         case invalidScanHuffmanDCSelector(JPEG.Table.HuffmanDC.Selector, Process)
    |              `- warning: associated value 'invalidScanHuffmanDCSelector' of 'Sendable'-conforming enum 'ParsingError' has non-sendable type 'JPEG.Process'; this is an error in the Swift 6 language mode
259 |         /// case JPEG.ParsingError.invalidScanHuffmanACSelector(_:_:)
260 |         ///     A component in a frame header segment used an AC huffman table
/host/spi-builder-workspace/sources/jpeg/jpeg.swift:619:10: note: consider making enum 'Process' conform to the 'Sendable' protocol
 617 |     /// ## (4:lexing-and-formatting)
 618 |     public
 619 |     enum Process
     |          `- note: consider making enum 'Process' conform to the 'Sendable' protocol
 620 |     {
 621 |         /// enum JPEG.Process.Coding
/host/spi-builder-workspace/sources/jpeg/error.swift:266:14: warning: associated value 'invalidScanHuffmanACSelector' of 'Sendable'-conforming enum 'ParsingError' has non-sendable type 'JPEG.Table.HuffmanAC.Selector' (aka 'WritableKeyPath<(Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.AC>>, Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.AC>>, Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.AC>>, Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.AC>>), Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.AC>>>'); this is an error in the Swift 6 language mode
264 |         /// - _ : JPEG.Process
265 |         ///     The coding process specified by the frame header.
266 |         case invalidScanHuffmanACSelector(JPEG.Table.HuffmanAC.Selector, Process)
    |              `- warning: associated value 'invalidScanHuffmanACSelector' of 'Sendable'-conforming enum 'ParsingError' has non-sendable type 'JPEG.Table.HuffmanAC.Selector' (aka 'WritableKeyPath<(Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.AC>>, Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.AC>>, Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.AC>>, Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.AC>>), Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.AC>>>'); this is an error in the Swift 6 language mode
267 |         /// case JPEG.ParsingError.invalidScanComponentCount(_:_:)
268 |         ///     A scan header had more that the maximum allowed number of components
Swift.WritableKeyPath:1:14: note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
1 | public class WritableKeyPath<Root, Value> : KeyPath<Root, Value> {
  |              `- note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
/host/spi-builder-workspace/sources/jpeg/error.swift:266:14: warning: associated value 'invalidScanHuffmanACSelector' of 'Sendable'-conforming enum 'ParsingError' has non-sendable type 'JPEG.Process'; this is an error in the Swift 6 language mode
264 |         /// - _ : JPEG.Process
265 |         ///     The coding process specified by the frame header.
266 |         case invalidScanHuffmanACSelector(JPEG.Table.HuffmanAC.Selector, Process)
    |              `- warning: associated value 'invalidScanHuffmanACSelector' of 'Sendable'-conforming enum 'ParsingError' has non-sendable type 'JPEG.Process'; this is an error in the Swift 6 language mode
267 |         /// case JPEG.ParsingError.invalidScanComponentCount(_:_:)
268 |         ///     A scan header had more that the maximum allowed number of components
/host/spi-builder-workspace/sources/jpeg/jpeg.swift:619:10: note: consider making enum 'Process' conform to the 'Sendable' protocol
 617 |     /// ## (4:lexing-and-formatting)
 618 |     public
 619 |     enum Process
     |          `- note: consider making enum 'Process' conform to the 'Sendable' protocol
 620 |     {
 621 |         /// enum JPEG.Process.Coding
/host/spi-builder-workspace/sources/jpeg/error.swift:274:14: warning: associated value 'invalidScanComponentCount' of 'Sendable'-conforming enum 'ParsingError' has non-sendable type 'JPEG.Process'; this is an error in the Swift 6 language mode
272 |         /// - _ : JPEG.Process
273 |         ///     The coding process used by the image.
274 |         case invalidScanComponentCount(Int, Process)
    |              `- warning: associated value 'invalidScanComponentCount' of 'Sendable'-conforming enum 'ParsingError' has non-sendable type 'JPEG.Process'; this is an error in the Swift 6 language mode
275 |         /// case JPEG.ParsingError.invalidScanProgressiveSubset(band:bits:_:)
276 |         ///     A scan header specified an invalid progressive frequency band
/host/spi-builder-workspace/sources/jpeg/jpeg.swift:619:10: note: consider making enum 'Process' conform to the 'Sendable' protocol
 617 |     /// ## (4:lexing-and-formatting)
 618 |     public
 619 |     enum Process
     |          `- note: consider making enum 'Process' conform to the 'Sendable' protocol
 620 |     {
 621 |         /// enum JPEG.Process.Coding
/host/spi-builder-workspace/sources/jpeg/error.swift:284:14: warning: associated value 'invalidScanProgressiveSubset(band:bits:_:)' of 'Sendable'-conforming enum 'ParsingError' has non-sendable type 'JPEG.Process'; this is an error in the Swift 6 language mode
282 |         /// - _     : JPEG.Process
283 |         ///     The coding process used by the image.
284 |         case invalidScanProgressiveSubset(band:(Int, Int), bits:(Int, Int), Process)
    |              `- warning: associated value 'invalidScanProgressiveSubset(band:bits:_:)' of 'Sendable'-conforming enum 'ParsingError' has non-sendable type 'JPEG.Process'; this is an error in the Swift 6 language mode
285 |
286 |         /// case JPEG.ParsingError.invalidHuffmanTargetCode(_:)
/host/spi-builder-workspace/sources/jpeg/jpeg.swift:619:10: note: consider making enum 'Process' conform to the 'Sendable' protocol
 617 |     /// ## (4:lexing-and-formatting)
 618 |     public
 619 |     enum Process
     |          `- note: consider making enum 'Process' conform to the 'Sendable' protocol
 620 |     {
 621 |         /// enum JPEG.Process.Coding
/host/spi-builder-workspace/sources/jpeg/error.swift:524:14: warning: associated value 'invalidSpectralSelectionProgression' of 'Sendable'-conforming enum 'DecodingError' has non-sendable type 'JPEG.Component.Key'; this is an error in the Swift 6 language mode
522 |         /// - _ : JPEG.Component.Key
523 |         ///     The component key of the invalidated color channel.
524 |         case invalidSpectralSelectionProgression(Range<Int>, Component.Key)
    |              `- warning: associated value 'invalidSpectralSelectionProgression' of 'Sendable'-conforming enum 'DecodingError' has non-sendable type 'JPEG.Component.Key'; this is an error in the Swift 6 language mode
525 |         /// case JPEG.DecodingError.invalidSuccessiveApproximationProgression(_:_:z:_:)
526 |         ///     A scan did not follow the correct successive approximation sequence
/host/spi-builder-workspace/sources/jpeg/jpeg.swift:1107:16: note: consider making struct 'Key' conform to the 'Sendable' protocol
1105 |         /// ## (2:image-structure-and-decomposition)
1106 |         public
1107 |         struct Key:Hashable, Comparable
     |                `- note: consider making struct 'Key' conform to the 'Sendable' protocol
1108 |         {
1109 |             let value:Int
/host/spi-builder-workspace/sources/jpeg/error.swift:540:14: warning: associated value 'invalidSuccessiveApproximationProgression(_:_:z:_:)' of 'Sendable'-conforming enum 'DecodingError' has non-sendable type 'JPEG.Component.Key'; this is an error in the Swift 6 language mode
538 |         /// - _ : JPEG.Component.Key
539 |         ///     The component key of the invalidated color channel.
540 |         case invalidSuccessiveApproximationProgression(Range<Int>, Int, z:Int, Component.Key)
    |              `- warning: associated value 'invalidSuccessiveApproximationProgression(_:_:z:_:)' of 'Sendable'-conforming enum 'DecodingError' has non-sendable type 'JPEG.Component.Key'; this is an error in the Swift 6 language mode
541 |
542 |         /// case JPEG.DecodingError.invalidCompositeValue(_:expected:)
/host/spi-builder-workspace/sources/jpeg/jpeg.swift:1107:16: note: consider making struct 'Key' conform to the 'Sendable' protocol
1105 |         /// ## (2:image-structure-and-decomposition)
1106 |         public
1107 |         struct Key:Hashable, Comparable
     |                `- note: consider making struct 'Key' conform to the 'Sendable' protocol
1108 |         {
1109 |             let value:Int
/host/spi-builder-workspace/sources/jpeg/error.swift:572:14: warning: associated value 'undefinedScanComponentReference' of 'Sendable'-conforming enum 'DecodingError' has non-sendable type 'JPEG.Component.Key'; this is an error in the Swift 6 language mode
570 |         /// - _ : Swift.Set<JPEG.Component.Key>
571 |         ///     The set of defined resident component keys.
572 |         case undefinedScanComponentReference(Component.Key, Set<Component.Key>)
    |              `- warning: associated value 'undefinedScanComponentReference' of 'Sendable'-conforming enum 'DecodingError' has non-sendable type 'JPEG.Component.Key'; this is an error in the Swift 6 language mode
573 |         /// case JPEG.DecodingError.invalidScanSamplingVolume(_:)
574 |         ///     An interleaved scan had a total component sampling volume greater
/host/spi-builder-workspace/sources/jpeg/jpeg.swift:1107:16: note: consider making struct 'Key' conform to the 'Sendable' protocol
1105 |         /// ## (2:image-structure-and-decomposition)
1106 |         public
1107 |         struct Key:Hashable, Comparable
     |                `- note: consider making struct 'Key' conform to the 'Sendable' protocol
1108 |         {
1109 |             let value:Int
/host/spi-builder-workspace/sources/jpeg/error.swift:572:14: warning: associated value 'undefinedScanComponentReference' of 'Sendable'-conforming enum 'DecodingError' has non-sendable type 'JPEG.Component.Key'; this is an error in the Swift 6 language mode
570 |         /// - _ : Swift.Set<JPEG.Component.Key>
571 |         ///     The set of defined resident component keys.
572 |         case undefinedScanComponentReference(Component.Key, Set<Component.Key>)
    |              `- warning: associated value 'undefinedScanComponentReference' of 'Sendable'-conforming enum 'DecodingError' has non-sendable type 'JPEG.Component.Key'; this is an error in the Swift 6 language mode
573 |         /// case JPEG.DecodingError.invalidScanSamplingVolume(_:)
574 |         ///     An interleaved scan had a total component sampling volume greater
/host/spi-builder-workspace/sources/jpeg/jpeg.swift:1107:16: note: consider making struct 'Key' conform to the 'Sendable' protocol
1105 |         /// ## (2:image-structure-and-decomposition)
1106 |         public
1107 |         struct Key:Hashable, Comparable
     |                `- note: consider making struct 'Key' conform to the 'Sendable' protocol
1108 |         {
1109 |             let value:Int
/host/spi-builder-workspace/sources/jpeg/error.swift:587:14: warning: associated value 'undefinedScanHuffmanDCReference' of 'Sendable'-conforming enum 'DecodingError' has non-sendable type 'JPEG.Table.HuffmanDC.Selector' (aka 'WritableKeyPath<(Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.DC>>, Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.DC>>, Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.DC>>, Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.DC>>), Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.DC>>>'); this is an error in the Swift 6 language mode
585 |         /// - _ : JPEG.Table.HuffmanDC.Selector
586 |         ///     The table selector.
587 |         case undefinedScanHuffmanDCReference(Table.HuffmanDC.Selector)
    |              `- warning: associated value 'undefinedScanHuffmanDCReference' of 'Sendable'-conforming enum 'DecodingError' has non-sendable type 'JPEG.Table.HuffmanDC.Selector' (aka 'WritableKeyPath<(Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.DC>>, Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.DC>>, Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.DC>>, Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.DC>>), Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.DC>>>'); this is an error in the Swift 6 language mode
588 |         /// case JPEG.DecodingError.undefinedScanHuffmanACReference(_:)
589 |         ///     An AC huffman table selector in a scan referenced a table
Swift.WritableKeyPath:1:14: note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
1 | public class WritableKeyPath<Root, Value> : KeyPath<Root, Value> {
  |              `- note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
/host/spi-builder-workspace/sources/jpeg/error.swift:593:14: warning: associated value 'undefinedScanHuffmanACReference' of 'Sendable'-conforming enum 'DecodingError' has non-sendable type 'JPEG.Table.HuffmanAC.Selector' (aka 'WritableKeyPath<(Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.AC>>, Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.AC>>, Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.AC>>, Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.AC>>), Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.AC>>>'); this is an error in the Swift 6 language mode
591 |         /// - _ : JPEG.Table.HuffmanAC.Selector
592 |         ///     The table selector.
593 |         case undefinedScanHuffmanACReference(Table.HuffmanAC.Selector)
    |              `- warning: associated value 'undefinedScanHuffmanACReference' of 'Sendable'-conforming enum 'DecodingError' has non-sendable type 'JPEG.Table.HuffmanAC.Selector' (aka 'WritableKeyPath<(Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.AC>>, Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.AC>>, Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.AC>>, Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.AC>>), Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.AC>>>'); this is an error in the Swift 6 language mode
594 |         /// case JPEG.DecodingError.undefinedScanQuantizationReference(_:)
595 |         ///     A quantization table selector in the first scan for a particular
Swift.WritableKeyPath:1:14: note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
1 | public class WritableKeyPath<Root, Value> : KeyPath<Root, Value> {
  |              `- note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
/host/spi-builder-workspace/sources/jpeg/error.swift:599:14: warning: associated value 'undefinedScanQuantizationReference' of 'Sendable'-conforming enum 'DecodingError' has non-sendable type 'JPEG.Table.Quantization.Selector' (aka 'WritableKeyPath<(Optional<(q: Int, qi: JPEG.Table.Quantization.Key)>, Optional<(q: Int, qi: JPEG.Table.Quantization.Key)>, Optional<(q: Int, qi: JPEG.Table.Quantization.Key)>, Optional<(q: Int, qi: JPEG.Table.Quantization.Key)>), Optional<(q: Int, qi: JPEG.Table.Quantization.Key)>>'); this is an error in the Swift 6 language mode
597 |         /// - _ : JPEG.Table.Quantization.Selector
598 |         ///     The table selector.
599 |         case undefinedScanQuantizationReference(Table.Quantization.Selector)
    |              `- warning: associated value 'undefinedScanQuantizationReference' of 'Sendable'-conforming enum 'DecodingError' has non-sendable type 'JPEG.Table.Quantization.Selector' (aka 'WritableKeyPath<(Optional<(q: Int, qi: JPEG.Table.Quantization.Key)>, Optional<(q: Int, qi: JPEG.Table.Quantization.Key)>, Optional<(q: Int, qi: JPEG.Table.Quantization.Key)>, Optional<(q: Int, qi: JPEG.Table.Quantization.Key)>), Optional<(q: Int, qi: JPEG.Table.Quantization.Key)>>'); this is an error in the Swift 6 language mode
600 |         /// case JPEG.DecodingError.invalidScanQuantizationPrecision(_:)
601 |         ///     A quantization table had the wrong precision mode for the image
Swift.WritableKeyPath:1:14: note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
1 | public class WritableKeyPath<Root, Value> : KeyPath<Root, Value> {
  |              `- note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
/host/spi-builder-workspace/sources/jpeg/error.swift:608:14: warning: associated value 'invalidScanQuantizationPrecision' of 'Sendable'-conforming enum 'DecodingError' has non-sendable type 'JPEG.Table.Quantization.Precision'; this is an error in the Swift 6 language mode
606 |         /// - _ : JPEG.Table.Quantization.Precision
607 |         ///     The precision mode of the quantization table.
608 |         case invalidScanQuantizationPrecision(Table.Quantization.Precision)
    |              `- warning: associated value 'invalidScanQuantizationPrecision' of 'Sendable'-conforming enum 'DecodingError' has non-sendable type 'JPEG.Table.Quantization.Precision'; this is an error in the Swift 6 language mode
609 |
610 |         /// case JPEG.DecodingError.missingStartOfImage(_:)
/host/spi-builder-workspace/sources/jpeg/jpeg.swift:1060:18: note: consider making enum 'Precision' conform to the 'Sendable' protocol
1058 |             ///     The integer width of the quantum values in this quantization table.
1059 |             public
1060 |             enum Precision
     |                  `- note: consider making enum 'Precision' conform to the 'Sendable' protocol
1061 |             {
1062 |                 /// case JPEG.Table.Quantization.Precision.uint8
/host/spi-builder-workspace/sources/jpeg/error.swift:614:14: warning: associated value 'missingStartOfImage' of 'Sendable'-conforming enum 'DecodingError' has non-sendable type 'JPEG.Marker'; this is an error in the Swift 6 language mode
612 |         /// - _ : JPEG.Marker
613 |         ///     The type indicator of the first encountered marker segment.
614 |         case missingStartOfImage(Marker)
    |              `- warning: associated value 'missingStartOfImage' of 'Sendable'-conforming enum 'DecodingError' has non-sendable type 'JPEG.Marker'; this is an error in the Swift 6 language mode
615 |         /// case JPEG.DecodingError.duplicateStartOfImage
616 |         ///     The decoder encountered more than one start-of-image marker.
/host/spi-builder-workspace/sources/jpeg/jpeg.swift:684:10: note: consider making enum 'Marker' conform to the 'Sendable' protocol
 682 |     /// ## (3:lexing-and-formatting)
 683 |     public
 684 |     enum Marker
     |          `- note: consider making enum 'Marker' conform to the 'Sendable' protocol
 685 |     {
 686 |         /// case JPEG.Marker.start
/host/spi-builder-workspace/sources/jpeg/error.swift:657:14: warning: associated value 'unsupportedFrameCodingProcess' of 'Sendable'-conforming enum 'DecodingError' has non-sendable type 'JPEG.Process'; this is an error in the Swift 6 language mode
655 |         /// - _ : JPEG.Process
656 |         ///     The coding process used by the image.
657 |         case unsupportedFrameCodingProcess(Process)
    |              `- warning: associated value 'unsupportedFrameCodingProcess' of 'Sendable'-conforming enum 'DecodingError' has non-sendable type 'JPEG.Process'; this is an error in the Swift 6 language mode
658 |         /// case JPEG.DecodingError.unrecognizedColorFormat(_:_:_:)
659 |         ///     A [`(Format).recognize(_:precision:)`] implementation failed to
/host/spi-builder-workspace/sources/jpeg/jpeg.swift:619:10: note: consider making enum 'Process' conform to the 'Sendable' protocol
 617 |     /// ## (4:lexing-and-formatting)
 618 |     public
 619 |     enum Process
     |          `- note: consider making enum 'Process' conform to the 'Sendable' protocol
 620 |     {
 621 |         /// enum JPEG.Process.Coding
/host/spi-builder-workspace/sources/jpeg/error.swift:667:14: warning: associated value 'unrecognizedColorFormat' of 'Sendable'-conforming enum 'DecodingError' has non-sendable type 'JPEG.Component.Key'; this is an error in the Swift 6 language mode
665 |         /// - _ : Swift.Any.Type
666 |         ///     The [`Format`] type that tried to detect the color format.
667 |         case unrecognizedColorFormat(Set<Component.Key>, Int, Any.Type)
    |              `- warning: associated value 'unrecognizedColorFormat' of 'Sendable'-conforming enum 'DecodingError' has non-sendable type 'JPEG.Component.Key'; this is an error in the Swift 6 language mode
668 |
669 |         /// static var JPEG.DecodingError.namespace: Swift.String { get }
/host/spi-builder-workspace/sources/jpeg/jpeg.swift:1107:16: note: consider making struct 'Key' conform to the 'Sendable' protocol
1105 |         /// ## (2:image-structure-and-decomposition)
1106 |         public
1107 |         struct Key:Hashable, Comparable
     |                `- note: consider making struct 'Key' conform to the 'Sendable' protocol
1108 |         {
1109 |             let value:Int
[19/68] Compiling JPEG debug.swift
[20/68] Compiling JPEG common.swift
[21/68] Compiling JPEG error.swift
/host/spi-builder-workspace/sources/jpeg/error.swift:161:14: warning: associated value 'truncatedMarkerSegmentBody(_:_:expected:)' of 'Sendable'-conforming enum 'ParsingError' has non-sendable type 'JPEG.Marker'; this is an error in the Swift 6 language mode
159 |         /// - expected  : Swift.ClosedRange<Swift.Int>
160 |         ///     The range of marker segment sizes that was expected, in bytes.
161 |         case truncatedMarkerSegmentBody(Marker, Int, expected:ClosedRange<Int>)
    |              `- warning: associated value 'truncatedMarkerSegmentBody(_:_:expected:)' of 'Sendable'-conforming enum 'ParsingError' has non-sendable type 'JPEG.Marker'; this is an error in the Swift 6 language mode
162 |         /// case JPEG.ParsingError.extraneousMarkerSegmentData(_:_:expected:)
163 |         ///     A marker segment contained more than the expected amount of data.
/host/spi-builder-workspace/sources/jpeg/jpeg.swift:684:10: note: consider making enum 'Marker' conform to the 'Sendable' protocol
 682 |     /// ## (3:lexing-and-formatting)
 683 |     public
 684 |     enum Marker
     |          `- note: consider making enum 'Marker' conform to the 'Sendable' protocol
 685 |     {
 686 |         /// case JPEG.Marker.start
/host/spi-builder-workspace/sources/jpeg/error.swift:170:14: warning: associated value 'extraneousMarkerSegmentData(_:_:expected:)' of 'Sendable'-conforming enum 'ParsingError' has non-sendable type 'JPEG.Marker'; this is an error in the Swift 6 language mode
168 |         /// - expected  : Swift.Int
169 |         ///     The amount of data that was expected, in bytes.
170 |         case extraneousMarkerSegmentData(Marker, Int, expected:Int)
    |              `- warning: associated value 'extraneousMarkerSegmentData(_:_:expected:)' of 'Sendable'-conforming enum 'ParsingError' has non-sendable type 'JPEG.Marker'; this is an error in the Swift 6 language mode
171 |         /// case JPEG.ParsingError.invalidJFIFSignature(_:)
172 |         ///     A JFIF segment had an invalid signature.
/host/spi-builder-workspace/sources/jpeg/jpeg.swift:684:10: note: consider making enum 'Marker' conform to the 'Sendable' protocol
 682 |     /// ## (3:lexing-and-formatting)
 683 |     public
 684 |     enum Marker
     |          `- note: consider making enum 'Marker' conform to the 'Sendable' protocol
 685 |     {
 686 |         /// case JPEG.Marker.start
/host/spi-builder-workspace/sources/jpeg/error.swift:208:14: warning: associated value 'invalidFramePrecision' of 'Sendable'-conforming enum 'ParsingError' has non-sendable type 'JPEG.Process'; this is an error in the Swift 6 language mode
206 |         /// - _ : JPEG.Process
207 |         ///     The coding process specified by the frame header.
208 |         case invalidFramePrecision(Int, Process)
    |              `- warning: associated value 'invalidFramePrecision' of 'Sendable'-conforming enum 'ParsingError' has non-sendable type 'JPEG.Process'; this is an error in the Swift 6 language mode
209 |         /// case JPEG.ParsingError.invalidFrameComponentCount(_:_:)
210 |         ///     A frame header segment had an invalid number of components.
/host/spi-builder-workspace/sources/jpeg/jpeg.swift:619:10: note: consider making enum 'Process' conform to the 'Sendable' protocol
 617 |     /// ## (4:lexing-and-formatting)
 618 |     public
 619 |     enum Process
     |          `- note: consider making enum 'Process' conform to the 'Sendable' protocol
 620 |     {
 621 |         /// enum JPEG.Process.Coding
/host/spi-builder-workspace/sources/jpeg/error.swift:215:14: warning: associated value 'invalidFrameComponentCount' of 'Sendable'-conforming enum 'ParsingError' has non-sendable type 'JPEG.Process'; this is an error in the Swift 6 language mode
213 |         /// - _ : JPEG.Process
214 |         ///     The coding process specified by the frame header.
215 |         case invalidFrameComponentCount(Int, Process)
    |              `- warning: associated value 'invalidFrameComponentCount' of 'Sendable'-conforming enum 'ParsingError' has non-sendable type 'JPEG.Process'; this is an error in the Swift 6 language mode
216 |         /// case JPEG.ParsingError.invalidFrameQuantizationSelectorCode(_:)
217 |         ///     A component in a frame header segment had an invalid quantization
/host/spi-builder-workspace/sources/jpeg/jpeg.swift:619:10: note: consider making enum 'Process' conform to the 'Sendable' protocol
 617 |     /// ## (4:lexing-and-formatting)
 618 |     public
 619 |     enum Process
     |          `- note: consider making enum 'Process' conform to the 'Sendable' protocol
 620 |     {
 621 |         /// enum JPEG.Process.Coding
/host/spi-builder-workspace/sources/jpeg/error.swift:229:14: warning: associated value 'invalidFrameQuantizationSelector' of 'Sendable'-conforming enum 'ParsingError' has non-sendable type 'JPEG.Table.Quantization.Selector' (aka 'WritableKeyPath<(Optional<(q: Int, qi: JPEG.Table.Quantization.Key)>, Optional<(q: Int, qi: JPEG.Table.Quantization.Key)>, Optional<(q: Int, qi: JPEG.Table.Quantization.Key)>, Optional<(q: Int, qi: JPEG.Table.Quantization.Key)>), Optional<(q: Int, qi: JPEG.Table.Quantization.Key)>>'); this is an error in the Swift 6 language mode
227 |         /// - _ : JPEG.Process
228 |         ///     The coding process specified by the frame header.
229 |         case invalidFrameQuantizationSelector(JPEG.Table.Quantization.Selector, Process)
    |              `- warning: associated value 'invalidFrameQuantizationSelector' of 'Sendable'-conforming enum 'ParsingError' has non-sendable type 'JPEG.Table.Quantization.Selector' (aka 'WritableKeyPath<(Optional<(q: Int, qi: JPEG.Table.Quantization.Key)>, Optional<(q: Int, qi: JPEG.Table.Quantization.Key)>, Optional<(q: Int, qi: JPEG.Table.Quantization.Key)>, Optional<(q: Int, qi: JPEG.Table.Quantization.Key)>), Optional<(q: Int, qi: JPEG.Table.Quantization.Key)>>'); this is an error in the Swift 6 language mode
230 |         /// case JPEG.ParsingError.invalidFrameComponentSamplingFactor(_:_:)
231 |         ///     A component in a frame header had an invalid sampling factor.
Swift.WritableKeyPath:1:14: note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
1 | public class WritableKeyPath<Root, Value> : KeyPath<Root, Value> {
  |              `- note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
/host/spi-builder-workspace/sources/jpeg/error.swift:229:14: warning: associated value 'invalidFrameQuantizationSelector' of 'Sendable'-conforming enum 'ParsingError' has non-sendable type 'JPEG.Process'; this is an error in the Swift 6 language mode
227 |         /// - _ : JPEG.Process
228 |         ///     The coding process specified by the frame header.
229 |         case invalidFrameQuantizationSelector(JPEG.Table.Quantization.Selector, Process)
    |              `- warning: associated value 'invalidFrameQuantizationSelector' of 'Sendable'-conforming enum 'ParsingError' has non-sendable type 'JPEG.Process'; this is an error in the Swift 6 language mode
230 |         /// case JPEG.ParsingError.invalidFrameComponentSamplingFactor(_:_:)
231 |         ///     A component in a frame header had an invalid sampling factor.
/host/spi-builder-workspace/sources/jpeg/jpeg.swift:619:10: note: consider making enum 'Process' conform to the 'Sendable' protocol
 617 |     /// ## (4:lexing-and-formatting)
 618 |     public
 619 |     enum Process
     |          `- note: consider making enum 'Process' conform to the 'Sendable' protocol
 620 |     {
 621 |         /// enum JPEG.Process.Coding
/host/spi-builder-workspace/sources/jpeg/error.swift:238:14: warning: associated value 'invalidFrameComponentSamplingFactor' of 'Sendable'-conforming enum 'ParsingError' has non-sendable type 'JPEG.Component.Key'; this is an error in the Swift 6 language mode
236 |         /// - _ : JPEG.Component.Key
237 |         ///     The component key.
238 |         case invalidFrameComponentSamplingFactor((x:Int, y:Int), Component.Key)
    |              `- warning: associated value 'invalidFrameComponentSamplingFactor' of 'Sendable'-conforming enum 'ParsingError' has non-sendable type 'JPEG.Component.Key'; this is an error in the Swift 6 language mode
239 |         /// case JPEG.ParsingError.duplicateFrameComponentIndex(_:)
240 |         ///     The same component key occurred more than once in the same frame header.
/host/spi-builder-workspace/sources/jpeg/jpeg.swift:1107:16: note: consider making struct 'Key' conform to the 'Sendable' protocol
1105 |         /// ## (2:image-structure-and-decomposition)
1106 |         public
1107 |         struct Key:Hashable, Comparable
     |                `- note: consider making struct 'Key' conform to the 'Sendable' protocol
1108 |         {
1109 |             let value:Int
/host/spi-builder-workspace/sources/jpeg/error.swift:243:14: warning: associated value 'duplicateFrameComponentIndex' of 'Sendable'-conforming enum 'ParsingError' has non-sendable type 'JPEG.Component.Key'; this is an error in the Swift 6 language mode
241 |         /// - _ : JPEG.Component.Key
242 |         ///     The duplicated component key.
243 |         case duplicateFrameComponentIndex(Component.Key)
    |              `- warning: associated value 'duplicateFrameComponentIndex' of 'Sendable'-conforming enum 'ParsingError' has non-sendable type 'JPEG.Component.Key'; this is an error in the Swift 6 language mode
244 |
245 |         /// case JPEG.ParsingError.invalidScanHuffmanSelectorCode(_:)
/host/spi-builder-workspace/sources/jpeg/jpeg.swift:1107:16: note: consider making struct 'Key' conform to the 'Sendable' protocol
1105 |         /// ## (2:image-structure-and-decomposition)
1106 |         public
1107 |         struct Key:Hashable, Comparable
     |                `- note: consider making struct 'Key' conform to the 'Sendable' protocol
1108 |         {
1109 |             let value:Int
/host/spi-builder-workspace/sources/jpeg/error.swift:258:14: warning: associated value 'invalidScanHuffmanDCSelector' of 'Sendable'-conforming enum 'ParsingError' has non-sendable type 'JPEG.Table.HuffmanDC.Selector' (aka 'WritableKeyPath<(Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.DC>>, Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.DC>>, Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.DC>>, Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.DC>>), Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.DC>>>'); this is an error in the Swift 6 language mode
256 |         /// - _ : JPEG.Process
257 |         ///     The coding process specified by the frame header.
258 |         case invalidScanHuffmanDCSelector(JPEG.Table.HuffmanDC.Selector, Process)
    |              `- warning: associated value 'invalidScanHuffmanDCSelector' of 'Sendable'-conforming enum 'ParsingError' has non-sendable type 'JPEG.Table.HuffmanDC.Selector' (aka 'WritableKeyPath<(Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.DC>>, Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.DC>>, Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.DC>>, Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.DC>>), Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.DC>>>'); this is an error in the Swift 6 language mode
259 |         /// case JPEG.ParsingError.invalidScanHuffmanACSelector(_:_:)
260 |         ///     A component in a frame header segment used an AC huffman table
Swift.WritableKeyPath:1:14: note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
1 | public class WritableKeyPath<Root, Value> : KeyPath<Root, Value> {
  |              `- note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
/host/spi-builder-workspace/sources/jpeg/error.swift:258:14: warning: associated value 'invalidScanHuffmanDCSelector' of 'Sendable'-conforming enum 'ParsingError' has non-sendable type 'JPEG.Process'; this is an error in the Swift 6 language mode
256 |         /// - _ : JPEG.Process
257 |         ///     The coding process specified by the frame header.
258 |         case invalidScanHuffmanDCSelector(JPEG.Table.HuffmanDC.Selector, Process)
    |              `- warning: associated value 'invalidScanHuffmanDCSelector' of 'Sendable'-conforming enum 'ParsingError' has non-sendable type 'JPEG.Process'; this is an error in the Swift 6 language mode
259 |         /// case JPEG.ParsingError.invalidScanHuffmanACSelector(_:_:)
260 |         ///     A component in a frame header segment used an AC huffman table
/host/spi-builder-workspace/sources/jpeg/jpeg.swift:619:10: note: consider making enum 'Process' conform to the 'Sendable' protocol
 617 |     /// ## (4:lexing-and-formatting)
 618 |     public
 619 |     enum Process
     |          `- note: consider making enum 'Process' conform to the 'Sendable' protocol
 620 |     {
 621 |         /// enum JPEG.Process.Coding
/host/spi-builder-workspace/sources/jpeg/error.swift:266:14: warning: associated value 'invalidScanHuffmanACSelector' of 'Sendable'-conforming enum 'ParsingError' has non-sendable type 'JPEG.Table.HuffmanAC.Selector' (aka 'WritableKeyPath<(Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.AC>>, Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.AC>>, Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.AC>>, Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.AC>>), Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.AC>>>'); this is an error in the Swift 6 language mode
264 |         /// - _ : JPEG.Process
265 |         ///     The coding process specified by the frame header.
266 |         case invalidScanHuffmanACSelector(JPEG.Table.HuffmanAC.Selector, Process)
    |              `- warning: associated value 'invalidScanHuffmanACSelector' of 'Sendable'-conforming enum 'ParsingError' has non-sendable type 'JPEG.Table.HuffmanAC.Selector' (aka 'WritableKeyPath<(Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.AC>>, Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.AC>>, Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.AC>>, Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.AC>>), Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.AC>>>'); this is an error in the Swift 6 language mode
267 |         /// case JPEG.ParsingError.invalidScanComponentCount(_:_:)
268 |         ///     A scan header had more that the maximum allowed number of components
Swift.WritableKeyPath:1:14: note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
1 | public class WritableKeyPath<Root, Value> : KeyPath<Root, Value> {
  |              `- note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
/host/spi-builder-workspace/sources/jpeg/error.swift:266:14: warning: associated value 'invalidScanHuffmanACSelector' of 'Sendable'-conforming enum 'ParsingError' has non-sendable type 'JPEG.Process'; this is an error in the Swift 6 language mode
264 |         /// - _ : JPEG.Process
265 |         ///     The coding process specified by the frame header.
266 |         case invalidScanHuffmanACSelector(JPEG.Table.HuffmanAC.Selector, Process)
    |              `- warning: associated value 'invalidScanHuffmanACSelector' of 'Sendable'-conforming enum 'ParsingError' has non-sendable type 'JPEG.Process'; this is an error in the Swift 6 language mode
267 |         /// case JPEG.ParsingError.invalidScanComponentCount(_:_:)
268 |         ///     A scan header had more that the maximum allowed number of components
/host/spi-builder-workspace/sources/jpeg/jpeg.swift:619:10: note: consider making enum 'Process' conform to the 'Sendable' protocol
 617 |     /// ## (4:lexing-and-formatting)
 618 |     public
 619 |     enum Process
     |          `- note: consider making enum 'Process' conform to the 'Sendable' protocol
 620 |     {
 621 |         /// enum JPEG.Process.Coding
/host/spi-builder-workspace/sources/jpeg/error.swift:274:14: warning: associated value 'invalidScanComponentCount' of 'Sendable'-conforming enum 'ParsingError' has non-sendable type 'JPEG.Process'; this is an error in the Swift 6 language mode
272 |         /// - _ : JPEG.Process
273 |         ///     The coding process used by the image.
274 |         case invalidScanComponentCount(Int, Process)
    |              `- warning: associated value 'invalidScanComponentCount' of 'Sendable'-conforming enum 'ParsingError' has non-sendable type 'JPEG.Process'; this is an error in the Swift 6 language mode
275 |         /// case JPEG.ParsingError.invalidScanProgressiveSubset(band:bits:_:)
276 |         ///     A scan header specified an invalid progressive frequency band
/host/spi-builder-workspace/sources/jpeg/jpeg.swift:619:10: note: consider making enum 'Process' conform to the 'Sendable' protocol
 617 |     /// ## (4:lexing-and-formatting)
 618 |     public
 619 |     enum Process
     |          `- note: consider making enum 'Process' conform to the 'Sendable' protocol
 620 |     {
 621 |         /// enum JPEG.Process.Coding
/host/spi-builder-workspace/sources/jpeg/error.swift:284:14: warning: associated value 'invalidScanProgressiveSubset(band:bits:_:)' of 'Sendable'-conforming enum 'ParsingError' has non-sendable type 'JPEG.Process'; this is an error in the Swift 6 language mode
282 |         /// - _     : JPEG.Process
283 |         ///     The coding process used by the image.
284 |         case invalidScanProgressiveSubset(band:(Int, Int), bits:(Int, Int), Process)
    |              `- warning: associated value 'invalidScanProgressiveSubset(band:bits:_:)' of 'Sendable'-conforming enum 'ParsingError' has non-sendable type 'JPEG.Process'; this is an error in the Swift 6 language mode
285 |
286 |         /// case JPEG.ParsingError.invalidHuffmanTargetCode(_:)
/host/spi-builder-workspace/sources/jpeg/jpeg.swift:619:10: note: consider making enum 'Process' conform to the 'Sendable' protocol
 617 |     /// ## (4:lexing-and-formatting)
 618 |     public
 619 |     enum Process
     |          `- note: consider making enum 'Process' conform to the 'Sendable' protocol
 620 |     {
 621 |         /// enum JPEG.Process.Coding
/host/spi-builder-workspace/sources/jpeg/error.swift:524:14: warning: associated value 'invalidSpectralSelectionProgression' of 'Sendable'-conforming enum 'DecodingError' has non-sendable type 'JPEG.Component.Key'; this is an error in the Swift 6 language mode
522 |         /// - _ : JPEG.Component.Key
523 |         ///     The component key of the invalidated color channel.
524 |         case invalidSpectralSelectionProgression(Range<Int>, Component.Key)
    |              `- warning: associated value 'invalidSpectralSelectionProgression' of 'Sendable'-conforming enum 'DecodingError' has non-sendable type 'JPEG.Component.Key'; this is an error in the Swift 6 language mode
525 |         /// case JPEG.DecodingError.invalidSuccessiveApproximationProgression(_:_:z:_:)
526 |         ///     A scan did not follow the correct successive approximation sequence
/host/spi-builder-workspace/sources/jpeg/jpeg.swift:1107:16: note: consider making struct 'Key' conform to the 'Sendable' protocol
1105 |         /// ## (2:image-structure-and-decomposition)
1106 |         public
1107 |         struct Key:Hashable, Comparable
     |                `- note: consider making struct 'Key' conform to the 'Sendable' protocol
1108 |         {
1109 |             let value:Int
/host/spi-builder-workspace/sources/jpeg/error.swift:540:14: warning: associated value 'invalidSuccessiveApproximationProgression(_:_:z:_:)' of 'Sendable'-conforming enum 'DecodingError' has non-sendable type 'JPEG.Component.Key'; this is an error in the Swift 6 language mode
538 |         /// - _ : JPEG.Component.Key
539 |         ///     The component key of the invalidated color channel.
540 |         case invalidSuccessiveApproximationProgression(Range<Int>, Int, z:Int, Component.Key)
    |              `- warning: associated value 'invalidSuccessiveApproximationProgression(_:_:z:_:)' of 'Sendable'-conforming enum 'DecodingError' has non-sendable type 'JPEG.Component.Key'; this is an error in the Swift 6 language mode
541 |
542 |         /// case JPEG.DecodingError.invalidCompositeValue(_:expected:)
/host/spi-builder-workspace/sources/jpeg/jpeg.swift:1107:16: note: consider making struct 'Key' conform to the 'Sendable' protocol
1105 |         /// ## (2:image-structure-and-decomposition)
1106 |         public
1107 |         struct Key:Hashable, Comparable
     |                `- note: consider making struct 'Key' conform to the 'Sendable' protocol
1108 |         {
1109 |             let value:Int
/host/spi-builder-workspace/sources/jpeg/error.swift:572:14: warning: associated value 'undefinedScanComponentReference' of 'Sendable'-conforming enum 'DecodingError' has non-sendable type 'JPEG.Component.Key'; this is an error in the Swift 6 language mode
570 |         /// - _ : Swift.Set<JPEG.Component.Key>
571 |         ///     The set of defined resident component keys.
572 |         case undefinedScanComponentReference(Component.Key, Set<Component.Key>)
    |              `- warning: associated value 'undefinedScanComponentReference' of 'Sendable'-conforming enum 'DecodingError' has non-sendable type 'JPEG.Component.Key'; this is an error in the Swift 6 language mode
573 |         /// case JPEG.DecodingError.invalidScanSamplingVolume(_:)
574 |         ///     An interleaved scan had a total component sampling volume greater
/host/spi-builder-workspace/sources/jpeg/jpeg.swift:1107:16: note: consider making struct 'Key' conform to the 'Sendable' protocol
1105 |         /// ## (2:image-structure-and-decomposition)
1106 |         public
1107 |         struct Key:Hashable, Comparable
     |                `- note: consider making struct 'Key' conform to the 'Sendable' protocol
1108 |         {
1109 |             let value:Int
/host/spi-builder-workspace/sources/jpeg/error.swift:572:14: warning: associated value 'undefinedScanComponentReference' of 'Sendable'-conforming enum 'DecodingError' has non-sendable type 'JPEG.Component.Key'; this is an error in the Swift 6 language mode
570 |         /// - _ : Swift.Set<JPEG.Component.Key>
571 |         ///     The set of defined resident component keys.
572 |         case undefinedScanComponentReference(Component.Key, Set<Component.Key>)
    |              `- warning: associated value 'undefinedScanComponentReference' of 'Sendable'-conforming enum 'DecodingError' has non-sendable type 'JPEG.Component.Key'; this is an error in the Swift 6 language mode
573 |         /// case JPEG.DecodingError.invalidScanSamplingVolume(_:)
574 |         ///     An interleaved scan had a total component sampling volume greater
/host/spi-builder-workspace/sources/jpeg/jpeg.swift:1107:16: note: consider making struct 'Key' conform to the 'Sendable' protocol
1105 |         /// ## (2:image-structure-and-decomposition)
1106 |         public
1107 |         struct Key:Hashable, Comparable
     |                `- note: consider making struct 'Key' conform to the 'Sendable' protocol
1108 |         {
1109 |             let value:Int
/host/spi-builder-workspace/sources/jpeg/error.swift:587:14: warning: associated value 'undefinedScanHuffmanDCReference' of 'Sendable'-conforming enum 'DecodingError' has non-sendable type 'JPEG.Table.HuffmanDC.Selector' (aka 'WritableKeyPath<(Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.DC>>, Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.DC>>, Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.DC>>, Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.DC>>), Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.DC>>>'); this is an error in the Swift 6 language mode
585 |         /// - _ : JPEG.Table.HuffmanDC.Selector
586 |         ///     The table selector.
587 |         case undefinedScanHuffmanDCReference(Table.HuffmanDC.Selector)
    |              `- warning: associated value 'undefinedScanHuffmanDCReference' of 'Sendable'-conforming enum 'DecodingError' has non-sendable type 'JPEG.Table.HuffmanDC.Selector' (aka 'WritableKeyPath<(Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.DC>>, Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.DC>>, Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.DC>>, Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.DC>>), Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.DC>>>'); this is an error in the Swift 6 language mode
588 |         /// case JPEG.DecodingError.undefinedScanHuffmanACReference(_:)
589 |         ///     An AC huffman table selector in a scan referenced a table
Swift.WritableKeyPath:1:14: note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
1 | public class WritableKeyPath<Root, Value> : KeyPath<Root, Value> {
  |              `- note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
/host/spi-builder-workspace/sources/jpeg/error.swift:593:14: warning: associated value 'undefinedScanHuffmanACReference' of 'Sendable'-conforming enum 'DecodingError' has non-sendable type 'JPEG.Table.HuffmanAC.Selector' (aka 'WritableKeyPath<(Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.AC>>, Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.AC>>, Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.AC>>, Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.AC>>), Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.AC>>>'); this is an error in the Swift 6 language mode
591 |         /// - _ : JPEG.Table.HuffmanAC.Selector
592 |         ///     The table selector.
593 |         case undefinedScanHuffmanACReference(Table.HuffmanAC.Selector)
    |              `- warning: associated value 'undefinedScanHuffmanACReference' of 'Sendable'-conforming enum 'DecodingError' has non-sendable type 'JPEG.Table.HuffmanAC.Selector' (aka 'WritableKeyPath<(Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.AC>>, Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.AC>>, Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.AC>>, Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.AC>>), Optional<JPEG.Table.Huffman<JPEG.Bitstream.Symbol.AC>>>'); this is an error in the Swift 6 language mode
594 |         /// case JPEG.DecodingError.undefinedScanQuantizationReference(_:)
595 |         ///     A quantization table selector in the first scan for a particular
Swift.WritableKeyPath:1:14: note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
1 | public class WritableKeyPath<Root, Value> : KeyPath<Root, Value> {
  |              `- note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
/host/spi-builder-workspace/sources/jpeg/error.swift:599:14: warning: associated value 'undefinedScanQuantizationReference' of 'Sendable'-conforming enum 'DecodingError' has non-sendable type 'JPEG.Table.Quantization.Selector' (aka 'WritableKeyPath<(Optional<(q: Int, qi: JPEG.Table.Quantization.Key)>, Optional<(q: Int, qi: JPEG.Table.Quantization.Key)>, Optional<(q: Int, qi: JPEG.Table.Quantization.Key)>, Optional<(q: Int, qi: JPEG.Table.Quantization.Key)>), Optional<(q: Int, qi: JPEG.Table.Quantization.Key)>>'); this is an error in the Swift 6 language mode
597 |         /// - _ : JPEG.Table.Quantization.Selector
598 |         ///     The table selector.
599 |         case undefinedScanQuantizationReference(Table.Quantization.Selector)
    |              `- warning: associated value 'undefinedScanQuantizationReference' of 'Sendable'-conforming enum 'DecodingError' has non-sendable type 'JPEG.Table.Quantization.Selector' (aka 'WritableKeyPath<(Optional<(q: Int, qi: JPEG.Table.Quantization.Key)>, Optional<(q: Int, qi: JPEG.Table.Quantization.Key)>, Optional<(q: Int, qi: JPEG.Table.Quantization.Key)>, Optional<(q: Int, qi: JPEG.Table.Quantization.Key)>), Optional<(q: Int, qi: JPEG.Table.Quantization.Key)>>'); this is an error in the Swift 6 language mode
600 |         /// case JPEG.DecodingError.invalidScanQuantizationPrecision(_:)
601 |         ///     A quantization table had the wrong precision mode for the image
Swift.WritableKeyPath:1:14: note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
1 | public class WritableKeyPath<Root, Value> : KeyPath<Root, Value> {
  |              `- note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
/host/spi-builder-workspace/sources/jpeg/error.swift:608:14: warning: associated value 'invalidScanQuantizationPrecision' of 'Sendable'-conforming enum 'DecodingError' has non-sendable type 'JPEG.Table.Quantization.Precision'; this is an error in the Swift 6 language mode
606 |         /// - _ : JPEG.Table.Quantization.Precision
607 |         ///     The precision mode of the quantization table.
608 |         case invalidScanQuantizationPrecision(Table.Quantization.Precision)
    |              `- warning: associated value 'invalidScanQuantizationPrecision' of 'Sendable'-conforming enum 'DecodingError' has non-sendable type 'JPEG.Table.Quantization.Precision'; this is an error in the Swift 6 language mode
609 |
610 |         /// case JPEG.DecodingError.missingStartOfImage(_:)
/host/spi-builder-workspace/sources/jpeg/jpeg.swift:1060:18: note: consider making enum 'Precision' conform to the 'Sendable' protocol
1058 |             ///     The integer width of the quantum values in this quantization table.
1059 |             public
1060 |             enum Precision
     |                  `- note: consider making enum 'Precision' conform to the 'Sendable' protocol
1061 |             {
1062 |                 /// case JPEG.Table.Quantization.Precision.uint8
/host/spi-builder-workspace/sources/jpeg/error.swift:614:14: warning: associated value 'missingStartOfImage' of 'Sendable'-conforming enum 'DecodingError' has non-sendable type 'JPEG.Marker'; this is an error in the Swift 6 language mode
612 |         /// - _ : JPEG.Marker
613 |         ///     The type indicator of the first encountered marker segment.
614 |         case missingStartOfImage(Marker)
    |              `- warning: associated value 'missingStartOfImage' of 'Sendable'-conforming enum 'DecodingError' has non-sendable type 'JPEG.Marker'; this is an error in the Swift 6 language mode
615 |         /// case JPEG.DecodingError.duplicateStartOfImage
616 |         ///     The decoder encountered more than one start-of-image marker.
/host/spi-builder-workspace/sources/jpeg/jpeg.swift:684:10: note: consider making enum 'Marker' conform to the 'Sendable' protocol
 682 |     /// ## (3:lexing-and-formatting)
 683 |     public
 684 |     enum Marker
     |          `- note: consider making enum 'Marker' conform to the 'Sendable' protocol
 685 |     {
 686 |         /// case JPEG.Marker.start
/host/spi-builder-workspace/sources/jpeg/error.swift:657:14: warning: associated value 'unsupportedFrameCodingProcess' of 'Sendable'-conforming enum 'DecodingError' has non-sendable type 'JPEG.Process'; this is an error in the Swift 6 language mode
655 |         /// - _ : JPEG.Process
656 |         ///     The coding process used by the image.
657 |         case unsupportedFrameCodingProcess(Process)
    |              `- warning: associated value 'unsupportedFrameCodingProcess' of 'Sendable'-conforming enum 'DecodingError' has non-sendable type 'JPEG.Process'; this is an error in the Swift 6 language mode
658 |         /// case JPEG.DecodingError.unrecognizedColorFormat(_:_:_:)
659 |         ///     A [`(Format).recognize(_:precision:)`] implementation failed to
/host/spi-builder-workspace/sources/jpeg/jpeg.swift:619:10: note: consider making enum 'Process' conform to the 'Sendable' protocol
 617 |     /// ## (4:lexing-and-formatting)
 618 |     public
 619 |     enum Process
     |          `- note: consider making enum 'Process' conform to the 'Sendable' protocol
 620 |     {
 621 |         /// enum JPEG.Process.Coding
/host/spi-builder-workspace/sources/jpeg/error.swift:667:14: warning: associated value 'unrecognizedColorFormat' of 'Sendable'-conforming enum 'DecodingError' has non-sendable type 'JPEG.Component.Key'; this is an error in the Swift 6 language mode
665 |         /// - _ : Swift.Any.Type
666 |         ///     The [`Format`] type that tried to detect the color format.
667 |         case unrecognizedColorFormat(Set<Component.Key>, Int, Any.Type)
    |              `- warning: associated value 'unrecognizedColorFormat' of 'Sendable'-conforming enum 'DecodingError' has non-sendable type 'JPEG.Component.Key'; this is an error in the Swift 6 language mode
668 |
669 |         /// static var JPEG.DecodingError.namespace: Swift.String { get }
/host/spi-builder-workspace/sources/jpeg/jpeg.swift:1107:16: note: consider making struct 'Key' conform to the 'Sendable' protocol
1105 |         /// ## (2:image-structure-and-decomposition)
1106 |         public
1107 |         struct Key:Hashable, Comparable
     |                `- note: consider making struct 'Key' conform to the 'Sendable' protocol
1108 |         {
1109 |             let value:Int
[22/68] Compiling JPEG encode.swift
[23/68] Compiling JPEG metadata.swift
[24/68] Compiling JPEG os.swift
[25/68] Compiling JPEG decode.swift
[26/69] Wrapping AST for JPEG for debugging
[28/95] Compiling JPEGEncodeBasic main.swift
[29/95] Emitting module JPEGEncodeBasic
[30/96] Emitting module JPEGInMemory
[31/96] Compiling JPEGInMemory main.swift
[32/97] Emitting module JPEGRecompress
[34/97] Compiling JPEGRecompress main.swift
[37/101] Compiling JPEGFuzzer output.swift
/host/spi-builder-workspace/tests/fuzz/output.swift:17:9: warning: static property 'bold' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 15 | {
 16 |     static
 17 |     var bold:String     = "\u{1B}[1m"
    |         |- warning: static property 'bold' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |         |- note: convert 'bold' to a 'let' constant to make 'Sendable' shared state immutable
    |         |- note: annotate 'bold' with '@MainActor' if property should only be accessed from the main actor
    |         `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 18 |     static
 19 |     var reset:String    = "\u{1B}[0m"
/host/spi-builder-workspace/tests/fuzz/output.swift:19:9: warning: static property 'reset' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 17 |     var bold:String     = "\u{1B}[1m"
 18 |     static
 19 |     var reset:String    = "\u{1B}[0m"
    |         |- warning: static property 'reset' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |         |- note: convert 'reset' to a 'let' constant to make 'Sendable' shared state immutable
    |         |- note: annotate 'reset' with '@MainActor' if property should only be accessed from the main actor
    |         `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 20 |
 21 |     static
[38/103] Emitting module JPEGRotate
error: compile command failed due to signal 6 (use -v to see invocation)
Begin Error in Function: '$s10JPEGRotate6rotate_5input6outputyAA8RotationO_S2StKF'
Found outside of lifetime use?!
Value:   %427 = load_borrow %426 : $*JPEG.Data.Spectral<JPEG.Common> // users: %435, %429
Consuming User:   end_borrow %427 : $JPEG.Data.Spectral<JPEG.Common> // id: %435
Non Consuming User:   end_borrow %429 : $*JPEG.Data.Spectral<JPEG.Common> // id: %445
Block: bb9
End Error in Function: '$s10JPEGRotate6rotate_5input6outputyAA8RotationO_S2StKF'
Found ownership error?!
triggering standard assertion failure routine
UNREACHABLE executed at /home/build-user/swift/lib/SIL/Verifier/LinearLifetimeCheckerPrivate.h:211!
Please submit a bug report (https://swift.org/contributing/#reporting-bugs) and include the crash backtrace.
Stack dump:
0.	Program arguments: /usr/bin/swift-frontend -frontend -c -primary-file /host/spi-builder-workspace/examples/rotate/main.swift -emit-dependencies-path /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/JPEGRotate.build/main.d -emit-reference-dependencies-path /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/JPEGRotate.build/main.swiftdeps -target x86_64-unknown-linux-gnu -disable-objc-interop -I /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Modules -enable-testing -g -debug-info-format=dwarf -dwarf-version=4 -module-cache-path /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/ModuleCache -swift-version 5 -Onone -D SWIFT_PACKAGE -D DEBUG -entry-point-function-name JPEGRotate_main -stats-output-dir .stats -strict-concurrency=complete -empty-abi-descriptor -resource-dir /usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /host/spi-builder-workspace -Xcc -fPIC -Xcc -g -Xcc -fno-omit-frame-pointer -module-name JPEGRotate -plugin-path /usr/lib/swift/host/plugins -plugin-path /usr/local/lib/swift/host/plugins -o /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/JPEGRotate.build/main.swift.o -index-store-path /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/index/store -index-system-modules
1.	Swift version 6.0-dev (LLVM c3efe9282719c35, Swift b163fed2b3101e0)
2.	Compiling with effective version 5.10
3.	While evaluating request ASTLoweringRequest(Lowering AST to SIL for file "/host/spi-builder-workspace/examples/rotate/main.swift")
4.	While silgen emitFunction SIL function "@$s10JPEGRotate6rotate_5input6outputyAA8RotationO_S2StKF".
 for 'rotate(_:input:output:)' (at /host/spi-builder-workspace/examples/rotate/main.swift:91:1)
5.	While verifying SIL function "@$s10JPEGRotate6rotate_5input6outputyAA8RotationO_S2StKF".
 for 'rotate(_:input:output:)' (at /host/spi-builder-workspace/examples/rotate/main.swift:91:1)
Stack dump without symbol names (ensure you have llvm-symbolizer in your PATH or set the environment var `LLVM_SYMBOLIZER_PATH` to point to it):
0  swift-frontend 0x0000560f8bda12b7
1  swift-frontend 0x0000560f8bd9f00e
2  swift-frontend 0x0000560f8bda192a
3  libc.so.6      0x00007fa3f3807520
4  libc.so.6      0x00007fa3f385b9fc pthread_kill + 300
5  libc.so.6      0x00007fa3f3807476 raise + 22
6  libc.so.6      0x00007fa3f37ed7f3 abort + 211
7  swift-frontend 0x0000560f8bcf6a5f
8  swift-frontend 0x0000560f862f6a7e
9  swift-frontend 0x0000560f862f34ba
10 swift-frontend 0x0000560f862f49ed
11 swift-frontend 0x0000560f862f8f64
12 swift-frontend 0x0000560f862fb11d
13 swift-frontend 0x0000560f862fafb9
14 swift-frontend 0x0000560f86325f1e
15 swift-frontend 0x0000560f863297b7
16 swift-frontend 0x0000560f8630cfff
17 swift-frontend 0x0000560f86306610
18 swift-frontend 0x0000560f86304999
19 swift-frontend 0x0000560f862fca96
20 swift-frontend 0x0000560f85743397
21 swift-frontend 0x0000560f85742937
22 swift-frontend 0x0000560f85743c02
23 swift-frontend 0x0000560f85740d63
24 swift-frontend 0x0000560f85746f1f
25 swift-frontend 0x0000560f85859814
26 swift-frontend 0x0000560f8574c832
27 swift-frontend 0x0000560f85747cac
28 swift-frontend 0x0000560f84faad3b
29 swift-frontend 0x0000560f84fbb905
30 swift-frontend 0x0000560f84fae127
31 swift-frontend 0x0000560f84face7a
32 swift-frontend 0x0000560f84d62fce
33 libc.so.6      0x00007fa3f37eed90
34 libc.so.6      0x00007fa3f37eee40 __libc_start_main + 128
35 swift-frontend 0x0000560f84d62075
BUILD FAILURE 6.0 linux