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 swift-json-parsing, reference master (ba457b), with Swift 6.1 for Linux on 27 Apr 2025 17:41:53 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4606859-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.1-latest swift build --triple x86_64-unknown-linux-gnu 2>&1

Build Log

========================================
RunAll
========================================
Builder version: 4.61.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/oskarek/swift-json-parsing.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/oskarek/swift-json-parsing
 * branch            master     -> FETCH_HEAD
 * [new branch]      master     -> origin/master
HEAD is now at ba457be Use new version in installation instructions
Cloned https://github.com/oskarek/swift-json-parsing.git
Revision (git rev-parse @):
ba457be0e34ef98865aec9a382a23db93b253aaf
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/oskarek/swift-json-parsing.git at master
========================================
Build
========================================
Selected platform:         linux
Swift version:             6.1
Building package at path:  $PWD
https://github.com/oskarek/swift-json-parsing.git
https://github.com/oskarek/swift-json-parsing.git
WARNING: environment variable SUPPRESS_SWIFT_6_FLAGS is not set
{
  "dependencies" : [
    {
      "identity" : "swift-parsing",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.13.0",
            "upper_bound" : "1.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/pointfreeco/swift-parsing"
    },
    {
      "identity" : "swift-benchmark",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.1.2",
            "upper_bound" : "1.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/google/swift-benchmark"
    }
  ],
  "manifest_display_name" : "swift-json-parsing",
  "name" : "swift-json-parsing",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "13.0"
    },
    {
      "name" : "macos",
      "version" : "10.15"
    },
    {
      "name" : "tvos",
      "version" : "13.0"
    },
    {
      "name" : "watchos",
      "version" : "6.0"
    }
  ],
  "products" : [
    {
      "name" : "JSONParsing",
      "targets" : [
        "JSONParsing"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "swift-json-parsing-benchmark",
      "targets" : [
        "swift-json-parsing-benchmark"
      ],
      "type" : {
        "executable" : null
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "swift_json_parsing_benchmark",
      "module_type" : "SwiftTarget",
      "name" : "swift-json-parsing-benchmark",
      "path" : "Sources/swift-json-parsing-benchmark",
      "product_dependencies" : [
        "Benchmark",
        "Parsing"
      ],
      "product_memberships" : [
        "swift-json-parsing-benchmark"
      ],
      "resources" : [
        {
          "path" : "/host/spi-builder-workspace/Sources/swift-json-parsing-benchmark/Samples/sample_json.json",
          "rule" : {
            "process" : {
            }
          }
        }
      ],
      "sources" : [
        "DecodingBenchmarks.swift",
        "EncodingBenchmarks.swift",
        "Person.swift",
        "main.swift"
      ],
      "target_dependencies" : [
        "JSONParsing"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "JSONParsingTests",
      "module_type" : "SwiftTarget",
      "name" : "JSONParsingTests",
      "path" : "Tests/JSONParsingTests",
      "sources" : [
        "JSONParsers/DecodableJSONParserTests.swift",
        "JSONParsers/FieldTests.swift",
        "JSONParsers/JSONArrayTests.swift",
        "JSONParsers/JSONBooleanTests.swift",
        "JSONParsers/JSONNumberTests.swift",
        "JSONParsers/JSONStringTests.swift",
        "JSONParsers/NestedJSONTests.swift",
        "JSONParsers/NullTests.swift",
        "JSONParsers/ObjectTests.swift",
        "JSONParsers/OptionalFieldTests.swift",
        "JSONValue/PrettyPrintingTests.swift",
        "JSONValue/SerializationTests.swift"
      ],
      "target_dependencies" : [
        "JSONParsing"
      ],
      "type" : "test"
    },
    {
      "c99name" : "JSONParsing",
      "module_type" : "SwiftTarget",
      "name" : "JSONParsing",
      "path" : "Sources/JSONParsing",
      "product_dependencies" : [
        "Parsing"
      ],
      "product_memberships" : [
        "JSONParsing",
        "swift-json-parsing-benchmark"
      ],
      "sources" : [
        "Errors/JSONParsingError.swift",
        "Errors/JSONPrintingError.swift",
        "Exports.swift",
        "Foundation+JSONParsing/Date+JSONParsing.swift",
        "Foundation+JSONParsing/URL+JSONParsing.swift",
        "Foundation+JSONParsing/UUID+JSONParsing.swift",
        "JSONParser+DecodeEncode.swift",
        "JSONParsers/Field.swift",
        "JSONParsers/JSONArray.swift",
        "JSONParsers/JSONBoolean.swift",
        "JSONParsers/JSONNumber.swift",
        "JSONParsers/JSONObject.swift",
        "JSONParsers/JSONString.swift",
        "JSONParsers/Null.swift",
        "JSONParsers/OptionalField.swift",
        "JSONParsing+Codable/DecodableJSONParser.swift",
        "JSONParsing+Codable/DecodingContainers+JSONParsing.swift",
        "JSONParsing+Codable/EncodingContainers+JSONParsing.swift",
        "JSONParsing+Codable/JSONParsingError+Codable.swift",
        "JSONParsing+Codable/JSONPrintingError+Codable.swift",
        "JSONValue/JSONValue+Codable.swift",
        "JSONValue/JSONValue+JSONSerialization.swift",
        "JSONValue/JSONValue+PrettyPrinting.swift",
        "JSONValue/JSONValue.swift",
        "Typealiases.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.7"
}
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.1-latest swift build --triple x86_64-unknown-linux-gnu -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures 2>&1
basic-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:3bdcac04179f4ed3e5b8e9dbd6e74bbf5ebc0f4fde48bbaad7d1e5c757e65bcb
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.1-latest
Fetching https://github.com/pointfreeco/swift-parsing
Fetching https://github.com/google/swift-benchmark
[1/1486] Fetching swift-benchmark
Fetched https://github.com/google/swift-benchmark from cache (0.32s)
[1/97881] Fetching swift-parsing
Fetched https://github.com/pointfreeco/swift-parsing from cache (6.30s)
Computing version for https://github.com/google/swift-benchmark
Computed https://github.com/google/swift-benchmark at 0.1.2 (6.89s)
Fetching https://github.com/apple/swift-argument-parser
[1/14950] Fetching swift-argument-parser
Fetched https://github.com/apple/swift-argument-parser from cache (1.29s)
Computing version for https://github.com/pointfreeco/swift-parsing
Computed https://github.com/pointfreeco/swift-parsing at 0.14.1 (1.97s)
Fetching https://github.com/pointfreeco/swift-case-paths
[1/4368] Fetching swift-case-paths
Fetched https://github.com/pointfreeco/swift-case-paths from cache (0.39s)
Computing version for https://github.com/apple/swift-argument-parser
Computed https://github.com/apple/swift-argument-parser at 1.5.0 (0.97s)
Computing version for https://github.com/pointfreeco/swift-case-paths
Computed https://github.com/pointfreeco/swift-case-paths at 1.7.0 (2.36s)
Fetching https://github.com/pointfreeco/xctest-dynamic-overlay
Fetching https://github.com/swiftlang/swift-syntax
[1/5388] Fetching xctest-dynamic-overlay
[5389/75621] Fetching xctest-dynamic-overlay, swift-syntax
Fetched https://github.com/pointfreeco/xctest-dynamic-overlay from cache (4.58s)
Fetched https://github.com/swiftlang/swift-syntax from cache (4.63s)
Computing version for https://github.com/pointfreeco/xctest-dynamic-overlay
Computed https://github.com/pointfreeco/xctest-dynamic-overlay at 1.5.2 (5.19s)
Computing version for https://github.com/swiftlang/swift-syntax
Computed https://github.com/swiftlang/swift-syntax at 601.0.1 (0.76s)
Creating working copy for https://github.com/pointfreeco/swift-parsing
Working copy of https://github.com/pointfreeco/swift-parsing resolved at 0.14.1
Creating working copy for https://github.com/pointfreeco/swift-case-paths
Working copy of https://github.com/pointfreeco/swift-case-paths resolved at 1.7.0
Creating working copy for https://github.com/google/swift-benchmark
Working copy of https://github.com/google/swift-benchmark resolved at 0.1.2
Creating working copy for https://github.com/swiftlang/swift-syntax
Working copy of https://github.com/swiftlang/swift-syntax resolved at 601.0.1
Creating working copy for https://github.com/apple/swift-argument-parser
Working copy of https://github.com/apple/swift-argument-parser resolved at 1.5.0
Creating working copy for https://github.com/pointfreeco/xctest-dynamic-overlay
Working copy of https://github.com/pointfreeco/xctest-dynamic-overlay resolved at 1.5.2
[1/1] Compiling plugin GenerateManual
Building for debugging...
[1/60] Write sources
[6/60] Copying sample_json.json
[6/60] Write sources
[28/60] Compiling _SwiftSyntaxCShims dummy.c
[29/60] Write swift-version-24593BA9C3E375BF.txt
[31/89] Emitting module IssueReporting
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[32/91] Emitting module SwiftSyntax600
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[33/91] Compiling SwiftSyntax600 Empty.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[34/92] Compiling IssueReporting BreakpointReporter.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[35/92] Compiling IssueReporting FatalErrorReporter.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[36/92] Compiling IssueReporting TestContext.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[37/92] Compiling IssueReporting Unimplemented.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[38/92] Compiling SwiftSyntax509 Empty.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[39/92] Emitting module SwiftSyntax509
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[41/93] Emitting module SwiftSyntax601
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[42/93] Compiling SwiftSyntax601 Empty.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[43/94] Emitting module ArgumentParserToolInfo
[44/94] Compiling ArgumentParserToolInfo ToolInfo.swift
[45/95] Emitting module SwiftSyntax510
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[46/95] Compiling SwiftSyntax510 Empty.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[48/96] Wrapping AST for SwiftSyntax600 for debugging
[51/96] Wrapping AST for SwiftSyntax601 for debugging
[52/96] Wrapping AST for SwiftSyntax509 for debugging
[53/96] Wrapping AST for ArgumentParserToolInfo for debugging
[54/96] Wrapping AST for SwiftSyntax510 for debugging
[56/96] Compiling IssueReporting WithExpectedIssue.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[57/96] Compiling IssueReporting WithIssueContext.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[58/198] Compiling SwiftSyntax RawSyntaxNodeProtocol.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[59/198] Compiling SwiftSyntax RawSyntaxTokenView.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[60/198] Compiling SwiftSyntax AbsolutePosition.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[61/198] Compiling SwiftSyntax AbsoluteRawSyntax.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[62/198] Compiling SwiftSyntax AbsoluteSyntaxInfo.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[63/198] Compiling SwiftSyntax Convenience.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[64/198] Compiling SwiftSyntax CustomTraits.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[65/198] Compiling SwiftSyntax EditorPlaceholder.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[66/198] Compiling SwiftSyntax Identifier.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[67/198] Compiling SwiftSyntax MemoryLayout.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[68/198] Compiling SwiftSyntax MissingNodeInitializers.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[69/198] Compiling SwiftSyntax Assert.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[70/198] Compiling SwiftSyntax BumpPtrAllocator.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[71/198] Compiling SwiftSyntax CommonAncestor.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[72/199] Wrapping AST for IssueReporting for debugging
[74/202] Compiling XCTestDynamicOverlay Exports.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[75/202] Emitting module XCTestDynamicOverlay
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[76/202] Compiling XCTestDynamicOverlay Deprecations.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[77/203] Wrapping AST for XCTestDynamicOverlay for debugging
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[88/222] Compiling CasePathsCore TypeName.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[89/222] Compiling CasePathsCore KeyPath+Sendable.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[90/223] Emitting module CasePathsCore
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[91/223] Compiling CasePathsCore UncheckedSendable.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[92/223] Compiling CasePathsCore Optional+CasePathable.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[93/223] Compiling CasePathsCore Never+CasePathable.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[94/223] Compiling CasePathsCore Result+CasePathable.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[95/223] Emitting module ArgumentParser
[96/228] Compiling CasePathsCore AnyCasePath.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[97/228] Compiling CasePathsCore CasePathIterable.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[98/228] Compiling CasePathsCore CasePathReflectable.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[99/228] Compiling CasePathsCore CasePathable.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[100/229] Wrapping AST for CasePathsCore for debugging
[102/229] Compiling SwiftSyntax SyntaxIdentifier.swift
[103/229] Compiling SwiftSyntax SyntaxNodeFactory.swift
[104/229] Compiling SwiftSyntax SyntaxNodeStructure.swift
[105/229] Compiling SwiftSyntax SyntaxProtocol.swift
[106/229] Compiling SwiftSyntax SyntaxText.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[110/229] Compiling SwiftSyntax RawSyntax.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[111/229] Compiling SwiftSyntax RawSyntaxLayoutView.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[114/229] Compiling SwiftSyntax SourceEdit.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[115/229] Compiling SwiftSyntax SourceLength.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[116/229] Compiling SwiftSyntax SourceLocation.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[117/229] Compiling SwiftSyntax SourcePresence.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[118/229] Compiling SwiftSyntax SwiftSyntaxCompatibility.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[119/229] Compiling SwiftSyntax Syntax.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[120/229] Compiling SwiftSyntax SyntaxArena.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[121/229] Compiling SwiftSyntax SyntaxArenaAllocatedBuffer.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[122/229] Compiling SwiftSyntax SyntaxChildren.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[123/229] Compiling SwiftSyntax SyntaxCollection.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[124/229] Compiling SwiftSyntax SyntaxHashable.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[136/229] Compiling ArgumentParser CollectionExtensions.swift
[137/229] Compiling ArgumentParser Platform.swift
[138/229] Compiling ArgumentParser SequenceExtensions.swift
[139/229] Compiling ArgumentParser StringExtensions.swift
[140/229] Compiling ArgumentParser Tree.swift
[141/229] Compiling SwiftSyntax SyntaxTreeViewMode.swift
[142/229] Compiling SwiftSyntax TokenDiagnostic.swift
[143/229] Compiling SwiftSyntax TokenSequence.swift
[144/229] Compiling SwiftSyntax TokenSyntax.swift
[145/229] Compiling SwiftSyntax Trivia.swift
[162/230] Wrapping AST for ArgumentParser for debugging
[164/246] Compiling Benchmark BenchmarkTermination.swift
[165/246] Compiling Benchmark BenchmarkTime.swift
[166/248] Compiling Benchmark BenchmarkState.swift
[167/248] Compiling Benchmark BenchmarkSuite.swift
[168/248] Compiling Benchmark BenchmarkCommand.swift
[169/248] Compiling Benchmark BenchmarkFilter.swift
[170/248] Compiling Benchmark BenchmarkRunner.swift
[171/248] Compiling Benchmark BenchmarkSetting.swift
[172/248] Compiling Benchmark Stats.swift
[173/248] Compiling Benchmark TestIntegration.swift
[174/248] Compiling Benchmark BenchmarkReporter.swift
[175/248] Compiling Benchmark BenchmarkResult.swift
[176/248] Compiling Benchmark BenchmarkFormatter.swift
[177/248] Compiling Benchmark BenchmarkMain.swift
[178/248] Compiling Benchmark Benchmark.swift
[179/248] Compiling Benchmark BenchmarkArguments.swift
[180/248] Compiling Benchmark BenchmarkColumn.swift
[181/248] Emitting module Benchmark
[182/249] Wrapping AST for Benchmark for debugging
[184/249] Emitting module SwiftSyntax
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[185/249] Compiling SwiftSyntax SyntaxEnum.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[186/249] Compiling SwiftSyntax SyntaxKind.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[187/249] Compiling SwiftSyntax SyntaxRewriter.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[188/249] Compiling SwiftSyntax SyntaxTraits.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[189/249] Compiling SwiftSyntax SyntaxVisitor.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[190/249] Compiling SwiftSyntax TokenKind.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[191/249] Compiling SwiftSyntax Tokens.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[192/249] Compiling SwiftSyntax TriviaPieces.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[193/249] Compiling SwiftSyntax RawSyntaxNodesAB.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[194/249] Compiling SwiftSyntax RawSyntaxNodesC.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[195/249] Compiling SwiftSyntax RawSyntaxNodesD.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[196/249] Compiling SwiftSyntax RawSyntaxNodesEF.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[197/249] Compiling SwiftSyntax RawSyntaxNodesGHI.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[198/249] Compiling SwiftSyntax RawSyntaxNodesJKLMN.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[199/249] Compiling SwiftSyntax RawSyntaxNodesOP.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[200/249] Compiling SwiftSyntax RawSyntaxNodesQRS.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[201/249] Compiling SwiftSyntax RawSyntaxNodesTUVWXYZ.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[202/249] Compiling SwiftSyntax RawSyntaxValidation.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[209/249] Compiling SwiftSyntax SyntaxAnyVisitor.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[210/249] Compiling SwiftSyntax SyntaxBaseNodes.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[211/249] Compiling SwiftSyntax SyntaxCollections.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[221/249] Compiling SwiftSyntax SyntaxNodesAB.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[222/249] Compiling SwiftSyntax SyntaxNodesC.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[223/249] Compiling SwiftSyntax SyntaxNodesD.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[224/249] Compiling SwiftSyntax SyntaxNodesEF.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[225/249] Compiling SwiftSyntax SyntaxNodesGHI.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[226/249] Compiling SwiftSyntax SyntaxNodesJKLMN.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[227/249] Compiling SwiftSyntax SyntaxNodesOP.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[228/249] Compiling SwiftSyntax SyntaxNodesQRS.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[229/249] Compiling SwiftSyntax SyntaxNodesTUVWXYZ.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[230/257] Wrapping AST for SwiftSyntax for debugging
[232/308] Compiling SwiftDiagnostics DiagnosticDecorator.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[233/309] Compiling SwiftBasicFormat Syntax+Extensions.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[234/309] Compiling SwiftBasicFormat SyntaxProtocol+Formatted.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[235/309] Compiling SwiftBasicFormat Trivia+FormatExtensions.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[236/309] Compiling SwiftDiagnostics Message.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[237/309] Compiling SwiftParser CharacterInfo.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[238/309] Compiling SwiftParser CollectionNodes+Parsable.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[239/309] Compiling SwiftDiagnostics Note.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[240/309] Emitting module SwiftDiagnostics
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[241/309] Compiling SwiftParser Attributes.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[242/309] Compiling SwiftParser Availability.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[243/309] Compiling SwiftBasicFormat Indenter.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[244/309] Compiling SwiftBasicFormat InferIndentation.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[245/309] Compiling SwiftDiagnostics FixIt.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[246/309] Compiling SwiftDiagnostics GroupedDiagnostics.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[247/309] Compiling SwiftDiagnostics DiagnosticsFormatter.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[249/310] Compiling SwiftBasicFormat BasicFormat.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[250/310] Emitting module SwiftBasicFormat
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[251/311] Compiling SwiftParser SwiftParserCompatibility.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[252/311] Compiling SwiftParser SwiftVersion.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[253/311] Compiling SwiftParser SyntaxUtils.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[254/311] Compiling SwiftParser TokenConsumer.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[255/311] Compiling SwiftParser TokenPrecedence.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[255/316] Wrapping AST for SwiftDiagnostics for debugging
[257/316] Wrapping AST for SwiftBasicFormat for debugging
[259/316] Compiling SwiftParser LexemeSequence.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[260/316] Compiling SwiftParser Lexer.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[261/316] Compiling SwiftParser RegexLiteralLexer.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[262/316] Compiling SwiftParser UnicodeScalarExtensions.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[263/316] Compiling SwiftParser Lookahead.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[264/316] Compiling SwiftParser LoopProgressCondition.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[265/316] Compiling SwiftParser Modifiers.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[266/316] Compiling SwiftParser Names.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[267/316] Compiling SwiftParser Nominals.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[268/316] Compiling SwiftParser Parameters.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[269/316] Compiling SwiftParser ParseSourceFile.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[270/316] Compiling SwiftParser Parser.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[271/316] Compiling SwiftParser Patterns.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[272/316] Compiling SwiftParser Recovery.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[273/316] Compiling SwiftParser Specifiers.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[274/316] Compiling SwiftParser Statements.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[275/316] Compiling SwiftParser StringLiteralRepresentedLiteralValue.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[276/316] Compiling SwiftParser StringLiterals.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[277/316] Compiling SwiftParser TokenSpec.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[278/316] Compiling SwiftParser TokenSpecSet.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[279/316] Compiling SwiftParser TopLevel.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[280/316] Compiling SwiftParser TriviaParser.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[281/316] Compiling SwiftParser Types.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[282/316] Compiling SwiftParser ExpressionInterpretedAsVersionTuple.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[283/316] Compiling SwiftParser Expressions.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[284/316] Compiling SwiftParser IncrementalParseTransition.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[285/316] Compiling SwiftParser IsValidIdentifier.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[286/316] Compiling SwiftParser Cursor.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[287/316] Compiling SwiftParser Lexeme.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[292/316] Compiling SwiftParser Declarations.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[293/316] Compiling SwiftParser Directives.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[294/316] Emitting module SwiftParser
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[295/316] Compiling SwiftParser ExperimentalFeatures.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[296/316] Compiling SwiftParser IsLexerClassified.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[297/316] Compiling SwiftParser LayoutNodes+Parsable.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[298/316] Compiling SwiftParser Parser+TokenSpecSet.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[299/316] Compiling SwiftParser TokenSpecStaticMembers.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[300/317] Wrapping AST for SwiftParser for debugging
[302/340] Compiling SwiftParserDiagnostics SyntaxKindNameForDiagnostics.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[303/341] Compiling SwiftOperators PrecedenceGroup.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[304/342] Compiling SwiftOperators PrecedenceGraph.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[305/342] Compiling SwiftOperators OperatorTable.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[306/342] Compiling SwiftParserDiagnostics TokenNameForDiagnostics.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[307/342] Compiling SwiftOperators OperatorTable+Semantics.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[308/342] Compiling SwiftOperators SyntaxSynthesis.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[309/342] Compiling SwiftOperators OperatorError.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[310/342] Compiling SwiftOperators OperatorTable+Defaults.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[311/342] Compiling SwiftOperators Operator.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[312/342] Compiling SwiftOperators OperatorError+Diagnostics.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[313/342] Emitting module SwiftOperators
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[314/342] Compiling SwiftOperators OperatorTable+Folding.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[315/343] Wrapping AST for SwiftOperators for debugging
[317/343] Emitting module SwiftParserDiagnostics
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[320/343] Compiling SwiftParserDiagnostics SyntaxExtensions.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[321/343] Compiling SwiftParserDiagnostics Utils.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[322/343] Compiling SwiftParserDiagnostics ChildNameForDiagnostics.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[323/343] Compiling SwiftParserDiagnostics ParserDiagnosticMessages.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[324/343] Compiling SwiftParserDiagnostics PresenceUtils.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[325/343] Compiling SwiftParserDiagnostics MissingNodesError.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[326/343] Compiling SwiftParserDiagnostics MissingTokenError.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[329/344] Wrapping AST for SwiftParserDiagnostics for debugging
[331/359] Compiling SwiftSyntaxBuilder Indenter.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[332/359] Compiling SwiftSyntaxBuilder ListBuilder.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[333/359] Emitting module SwiftSyntaxBuilder
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[334/359] Compiling SwiftSyntaxBuilder ConvenienceInitializers.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[335/359] Compiling SwiftSyntaxBuilder DeclSyntaxParseable.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[336/360] Compiling SwiftSyntaxBuilder ResultBuilderExtensions.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[337/360] Compiling SwiftSyntaxBuilder SwiftSyntaxBuilderCompatibility.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[338/360] Compiling SwiftSyntaxBuilder Syntax+StringInterpolation.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[339/360] Compiling SwiftSyntaxBuilder SyntaxNodeWithBody.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[340/360] Compiling SwiftSyntaxBuilder SyntaxExpressibleByStringInterpolationConformances.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[341/360] Compiling SwiftSyntaxBuilder SyntaxParsable+ExpressibleByStringInterpolation.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[342/360] Compiling SwiftSyntaxBuilder ValidatingSyntaxNodes.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[343/360] Compiling SwiftSyntaxBuilder WithTrailingCommaSyntax+EnsuringTrailingComma.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[344/360] Compiling SwiftSyntaxBuilder BuildableNodes.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[345/360] Compiling SwiftSyntaxBuilder RenamedChildrenBuilderCompatibility.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[346/360] Compiling SwiftSyntaxBuilder ResultBuilders.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[347/361] Wrapping AST for SwiftSyntaxBuilder for debugging
[349/378] Emitting module SwiftSyntaxMacros
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[350/380] Compiling SwiftSyntaxMacros Macro.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[351/380] Compiling SwiftSyntaxMacros MemberAttributeMacro.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[352/380] Compiling SwiftSyntaxMacros CodeItemMacro.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[353/380] Compiling SwiftSyntaxMacros DeclarationMacro.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[354/380] Compiling SwiftSyntaxMacros FreestandingMacro.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[355/380] Compiling SwiftSyntaxMacros Macro+Format.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[356/380] Compiling SwiftSyntaxMacros AccessorMacro.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[357/380] Compiling SwiftSyntaxMacros AttachedMacro.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[358/380] Compiling SwiftSyntaxMacros BodyMacro.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[359/380] Compiling SwiftSyntaxMacros MemberMacro.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[360/380] Compiling SwiftSyntaxMacros PeerMacro.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[361/380] Compiling SwiftSyntaxMacros ExpressionMacro.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[362/380] Compiling SwiftSyntaxMacros ExtensionMacro.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[363/380] Compiling SwiftSyntaxMacros AbstractSourceLocation.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[364/380] Compiling SwiftSyntaxMacros MacroExpansionContext.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[365/380] Compiling SwiftSyntaxMacros MacroExpansionDiagnosticMessages.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[366/380] Compiling SwiftSyntaxMacros PreambleMacro.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[367/380] Compiling SwiftSyntaxMacros Syntax+LexicalContext.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[368/381] Wrapping AST for SwiftSyntaxMacros for debugging
[370/390] Compiling SwiftSyntaxMacroExpansion MacroSpec.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[371/391] Compiling SwiftSyntaxMacroExpansion IndentationUtils.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[372/391] Emitting module SwiftSyntaxMacroExpansion
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[373/391] Compiling SwiftSyntaxMacroExpansion MacroExpansionDiagnosticMessages.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[374/391] Compiling SwiftSyntaxMacroExpansion MacroExpansion.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[375/391] Compiling SwiftSyntaxMacroExpansion BasicMacroExpansionContext.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[376/391] Compiling SwiftSyntaxMacroExpansion FunctionParameterUtils.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[377/391] Compiling SwiftSyntaxMacroExpansion MacroReplacement.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[378/391] Compiling SwiftSyntaxMacroExpansion MacroArgument.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[379/391] Compiling SwiftSyntaxMacroExpansion MacroSystem.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[380/392] Wrapping AST for SwiftSyntaxMacroExpansion for debugging
[382/404] Compiling SwiftCompilerPluginMessageHandling LRUCache.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[383/404] Compiling SwiftCompilerPluginMessageHandling Macros.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[384/404] Compiling SwiftCompilerPluginMessageHandling PluginMessageCompatibility.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[385/404] Compiling SwiftCompilerPluginMessageHandling PluginMacroExpansionContext.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[386/404] Compiling SwiftCompilerPluginMessageHandling PluginMessages.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[387/405] Compiling SwiftCompilerPluginMessageHandling StandardIOMessageConnection.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[388/405] Emitting module SwiftCompilerPluginMessageHandling
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[389/405] Compiling SwiftCompilerPluginMessageHandling CompilerPluginMessageHandler.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[390/405] Compiling SwiftCompilerPluginMessageHandling Diagnostics.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[391/405] Compiling SwiftCompilerPluginMessageHandling CodingUtilities.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[392/405] Compiling SwiftCompilerPluginMessageHandling JSON.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[393/405] Compiling SwiftCompilerPluginMessageHandling JSONDecoding.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[394/405] Compiling SwiftCompilerPluginMessageHandling JSONEncoding.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[395/406] Wrapping AST for SwiftCompilerPluginMessageHandling for debugging
[397/408] Emitting module SwiftCompilerPlugin
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[398/408] Compiling SwiftCompilerPlugin CompilerPlugin.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[399/409] Wrapping AST for SwiftCompilerPlugin for debugging
[401/412] Emitting module CasePathsMacros
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[402/412] Compiling CasePathsMacros Plugin.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[403/412] Compiling CasePathsMacros CasePathableMacro.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[404/413] Wrapping AST for CasePathsMacros for debugging
[405/413] Write Objects.LinkFileList
[406/413] Linking CasePathsMacros-tool
[408/420] Compiling CasePaths LockIsolated.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[409/420] Compiling CasePaths Macros.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[410/420] Compiling CasePaths XCTestSupport.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[411/420] Compiling CasePaths Exports.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[412/420] Compiling CasePaths Deprecations.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[413/420] Compiling CasePaths EnumReflection.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[414/420] Emitting module CasePaths
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[415/421] Wrapping AST for CasePaths for debugging
[417/488] Compiling Parsing OneOfBuilder.swift
[418/488] Compiling Parsing ParserBuilder.swift
[419/488] Compiling Parsing Conversion.swift
[420/488] Compiling Parsing AnyConversion.swift
[421/488] Compiling Parsing BinaryFloatingPoint.swift
[422/488] Compiling Parsing ConversionMap.swift
[423/488] Compiling Parsing Conversions.swift
[424/488] Compiling Parsing Data.swift
[425/488] Compiling Parsing Enum.swift
[426/488] Compiling Parsing FixedWidthInteger.swift
[427/497] Compiling Parsing PrefixThrough.swift
[428/497] Compiling Parsing PrefixUpTo.swift
[429/497] Compiling Parsing Printing.swift
[430/497] Compiling Parsing Pullback.swift
[431/497] Compiling Parsing ReplaceError.swift
[432/497] Compiling Parsing Rest.swift
[433/497] Compiling Parsing Skip.swift
[434/497] Compiling Parsing StartsWith.swift
[435/497] Compiling Parsing UUID.swift
[436/497] Compiling Parsing OneOf.swift
[437/497] Compiling Parsing OneOfMany.swift
[438/497] Compiling Parsing Optional.swift
[439/497] Compiling Parsing Optionally.swift
[440/497] Compiling Parsing Parse.swift
[441/497] Compiling Parsing ParseableFormatStyle.swift
[442/497] Compiling Parsing Peek.swift
[443/497] Compiling Parsing Pipe.swift
[444/497] Compiling Parsing Prefix.swift
[445/497] Compiling Parsing CaseIterableRawRepresentable.swift
[446/497] Compiling Parsing CharacterSet.swift
[447/497] Compiling Parsing Conditional.swift
[448/497] Compiling Parsing Consumed.swift
[449/497] Compiling Parsing Digits.swift
[450/497] Compiling Parsing End.swift
[451/497] Compiling Parsing Fail.swift
[452/497] Compiling Parsing Filter.swift
[453/497] Compiling Parsing First.swift
[454/497] Compiling Parsing CountingRange.swift
[455/497] Compiling Parsing EmptyInitializable.swift
[456/497] Compiling Parsing AnyEquatable.swift
[457/497] Compiling Parsing Deprecations.swift
[458/497] Compiling Parsing Parser.swift
[459/497] Compiling Parsing ParserPrinter.swift
[460/497] Compiling Parsing Always.swift
[461/497] Compiling Parsing AnyParserPrinter.swift
[462/497] Compiling Parsing Backtracking.swift
[463/497] Compiling Parsing Bool.swift
[464/497] Compiling Parsing Identity.swift
[465/497] Compiling Parsing JSON.swift
[466/497] Compiling Parsing LosslessStringConvertible.swift
[467/497] Compiling Parsing Memberwise.swift
[468/497] Compiling Parsing ParseableFormatStyleConversion.swift
[469/497] Compiling Parsing RawRepresentable.swift
[470/497] Compiling Parsing String.swift
[471/497] Compiling Parsing Substring.swift
[472/497] Compiling Parsing UTF8View.swift
[473/497] Compiling Parsing ConvertingError.swift
[474/497] Compiling Parsing Float.swift
[475/497] Compiling Parsing From.swift
[476/497] Compiling Parsing Int.swift
[477/497] Compiling Parsing Lazy.swift
[478/497] Compiling Parsing Literal.swift
[479/497] Compiling Parsing Many.swift
[480/497] Compiling Parsing Map.swift
[481/497] Compiling Parsing Newline.swift
[482/497] Compiling Parsing Not.swift
[483/497] Emitting module Parsing
[484/497] Compiling Parsing Whitespace.swift
[485/497] Compiling Parsing AnyParser.swift
[486/497] Compiling Parsing CompactMap.swift
[487/497] Compiling Parsing FlatMap.swift
[488/497] Compiling Parsing Parsers.swift
[489/497] Compiling Parsing Stream.swift
[490/497] Compiling Parsing ParsingError.swift
[491/497] Compiling Parsing PrependableCollection.swift
[492/497] Compiling Parsing PrintingError.swift
[493/498] Wrapping AST for Parsing for debugging
[495/521] Compiling JSONParsing JSONNumber.swift
/host/spi-builder-workspace/Sources/JSONParsing/JSONParsers/JSONNumber.swift:110:37: error: ambiguous use of 'init(_:)'
108 |         fromDouble: { Num($0) },
109 |         toDouble: { Double($0) },
110 |         fromInt: allowInteger ? Num.init : nil
    |                                     `- error: ambiguous use of 'init(_:)'
111 |       )
112 |     )
Swift.FloatingPoint.init:2:1: note: found this candidate in module 'Swift'
1 | protocol FloatingPoint {
2 | init(_ value: Int)}
  | `- note: found this candidate in module 'Swift'
3 |
Swift.FloatingPoint.init:2:1: note: found this candidate in module 'Swift'
1 | protocol FloatingPoint {
2 | init<Source>(_ value: Source) where Source : BinaryInteger}
  | `- note: found this candidate in module 'Swift'
3 |
[496/521] Compiling JSONParsing JSONObject.swift
/host/spi-builder-workspace/Sources/JSONParsing/JSONParsers/JSONNumber.swift:110:37: error: ambiguous use of 'init(_:)'
108 |         fromDouble: { Num($0) },
109 |         toDouble: { Double($0) },
110 |         fromInt: allowInteger ? Num.init : nil
    |                                     `- error: ambiguous use of 'init(_:)'
111 |       )
112 |     )
Swift.FloatingPoint.init:2:1: note: found this candidate in module 'Swift'
1 | protocol FloatingPoint {
2 | init(_ value: Int)}
  | `- note: found this candidate in module 'Swift'
3 |
Swift.FloatingPoint.init:2:1: note: found this candidate in module 'Swift'
1 | protocol FloatingPoint {
2 | init<Source>(_ value: Source) where Source : BinaryInteger}
  | `- note: found this candidate in module 'Swift'
3 |
[497/521] Compiling JSONParsing JSONString.swift
/host/spi-builder-workspace/Sources/JSONParsing/JSONParsers/JSONNumber.swift:110:37: error: ambiguous use of 'init(_:)'
108 |         fromDouble: { Num($0) },
109 |         toDouble: { Double($0) },
110 |         fromInt: allowInteger ? Num.init : nil
    |                                     `- error: ambiguous use of 'init(_:)'
111 |       )
112 |     )
Swift.FloatingPoint.init:2:1: note: found this candidate in module 'Swift'
1 | protocol FloatingPoint {
2 | init(_ value: Int)}
  | `- note: found this candidate in module 'Swift'
3 |
Swift.FloatingPoint.init:2:1: note: found this candidate in module 'Swift'
1 | protocol FloatingPoint {
2 | init<Source>(_ value: Source) where Source : BinaryInteger}
  | `- note: found this candidate in module 'Swift'
3 |
[498/521] Compiling JSONParsing URL+JSONParsing.swift
[499/521] Compiling JSONParsing UUID+JSONParsing.swift
[500/521] Compiling JSONParsing JSONParser+DecodeEncode.swift
[501/524] Compiling JSONParsing DecodingContainers+JSONParsing.swift
[502/524] Compiling JSONParsing EncodingContainers+JSONParsing.swift
[503/524] Compiling JSONParsing JSONParsingError+Codable.swift
[504/524] Compiling JSONParsing JSONParsingError.swift
[505/524] Compiling JSONParsing JSONPrintingError.swift
[506/524] Compiling JSONParsing Exports.swift
[507/524] Compiling JSONParsing Date+JSONParsing.swift
[508/524] Compiling JSONParsing Null.swift
[509/524] Compiling JSONParsing OptionalField.swift
[510/524] Compiling JSONParsing DecodableJSONParser.swift
[511/524] Compiling JSONParsing Field.swift
[512/524] Compiling JSONParsing JSONArray.swift
[513/524] Compiling JSONParsing JSONBoolean.swift
[514/524] Compiling JSONParsing JSONPrintingError+Codable.swift
/host/spi-builder-workspace/Sources/JSONParsing/JSONValue/JSONValue+JSONSerialization.swift:15:57: error: type 'JSONSerialization.ReadingOptions' has no member 'json5Allowed'
 13 |   @available(macOS 12.0, iOS 15.0, tvOS 15.0, watchOS 8.0, *)
 14 |   public init(_ jsonData: Data, allowJSON5: Bool) throws {
 15 |     try self.init(jsonData, extraOptions: allowJSON5 ? .json5Allowed : [])
    |                                                         `- error: type 'JSONSerialization.ReadingOptions' has no member 'json5Allowed'
 16 |   }
 17 |
/host/spi-builder-workspace/Sources/JSONParsing/JSONValue/JSONValue+JSONSerialization.swift:41:10: error: cannot find 'CFGetTypeID' in scope
 39 |       self = .null
 40 |     case let num as NSNumber:
 41 |       if CFGetTypeID(num) == CFBooleanGetTypeID() {
    |          `- error: cannot find 'CFGetTypeID' in scope
 42 |         self = .boolean(num.boolValue)
 43 |       } else if CFNumberIsFloatType(num) {
/host/spi-builder-workspace/Sources/JSONParsing/JSONValue/JSONValue+JSONSerialization.swift:41:30: error: cannot find 'CFBooleanGetTypeID' in scope
 39 |       self = .null
 40 |     case let num as NSNumber:
 41 |       if CFGetTypeID(num) == CFBooleanGetTypeID() {
    |                              `- error: cannot find 'CFBooleanGetTypeID' in scope
 42 |         self = .boolean(num.boolValue)
 43 |       } else if CFNumberIsFloatType(num) {
/host/spi-builder-workspace/Sources/JSONParsing/JSONValue/JSONValue+JSONSerialization.swift:43:17: error: cannot find 'CFNumberIsFloatType' in scope
 41 |       if CFGetTypeID(num) == CFBooleanGetTypeID() {
 42 |         self = .boolean(num.boolValue)
 43 |       } else if CFNumberIsFloatType(num) {
    |                 `- error: cannot find 'CFNumberIsFloatType' in scope
 44 |         self = .float(num.doubleValue)
 45 |       } else {
[515/524] Compiling JSONParsing JSONValue+Codable.swift
/host/spi-builder-workspace/Sources/JSONParsing/JSONValue/JSONValue+JSONSerialization.swift:15:57: error: type 'JSONSerialization.ReadingOptions' has no member 'json5Allowed'
 13 |   @available(macOS 12.0, iOS 15.0, tvOS 15.0, watchOS 8.0, *)
 14 |   public init(_ jsonData: Data, allowJSON5: Bool) throws {
 15 |     try self.init(jsonData, extraOptions: allowJSON5 ? .json5Allowed : [])
    |                                                         `- error: type 'JSONSerialization.ReadingOptions' has no member 'json5Allowed'
 16 |   }
 17 |
/host/spi-builder-workspace/Sources/JSONParsing/JSONValue/JSONValue+JSONSerialization.swift:41:10: error: cannot find 'CFGetTypeID' in scope
 39 |       self = .null
 40 |     case let num as NSNumber:
 41 |       if CFGetTypeID(num) == CFBooleanGetTypeID() {
    |          `- error: cannot find 'CFGetTypeID' in scope
 42 |         self = .boolean(num.boolValue)
 43 |       } else if CFNumberIsFloatType(num) {
/host/spi-builder-workspace/Sources/JSONParsing/JSONValue/JSONValue+JSONSerialization.swift:41:30: error: cannot find 'CFBooleanGetTypeID' in scope
 39 |       self = .null
 40 |     case let num as NSNumber:
 41 |       if CFGetTypeID(num) == CFBooleanGetTypeID() {
    |                              `- error: cannot find 'CFBooleanGetTypeID' in scope
 42 |         self = .boolean(num.boolValue)
 43 |       } else if CFNumberIsFloatType(num) {
/host/spi-builder-workspace/Sources/JSONParsing/JSONValue/JSONValue+JSONSerialization.swift:43:17: error: cannot find 'CFNumberIsFloatType' in scope
 41 |       if CFGetTypeID(num) == CFBooleanGetTypeID() {
 42 |         self = .boolean(num.boolValue)
 43 |       } else if CFNumberIsFloatType(num) {
    |                 `- error: cannot find 'CFNumberIsFloatType' in scope
 44 |         self = .float(num.doubleValue)
 45 |       } else {
[516/524] Compiling JSONParsing JSONValue+JSONSerialization.swift
/host/spi-builder-workspace/Sources/JSONParsing/JSONValue/JSONValue+JSONSerialization.swift:15:57: error: type 'JSONSerialization.ReadingOptions' has no member 'json5Allowed'
 13 |   @available(macOS 12.0, iOS 15.0, tvOS 15.0, watchOS 8.0, *)
 14 |   public init(_ jsonData: Data, allowJSON5: Bool) throws {
 15 |     try self.init(jsonData, extraOptions: allowJSON5 ? .json5Allowed : [])
    |                                                         `- error: type 'JSONSerialization.ReadingOptions' has no member 'json5Allowed'
 16 |   }
 17 |
/host/spi-builder-workspace/Sources/JSONParsing/JSONValue/JSONValue+JSONSerialization.swift:41:10: error: cannot find 'CFGetTypeID' in scope
 39 |       self = .null
 40 |     case let num as NSNumber:
 41 |       if CFGetTypeID(num) == CFBooleanGetTypeID() {
    |          `- error: cannot find 'CFGetTypeID' in scope
 42 |         self = .boolean(num.boolValue)
 43 |       } else if CFNumberIsFloatType(num) {
/host/spi-builder-workspace/Sources/JSONParsing/JSONValue/JSONValue+JSONSerialization.swift:41:30: error: cannot find 'CFBooleanGetTypeID' in scope
 39 |       self = .null
 40 |     case let num as NSNumber:
 41 |       if CFGetTypeID(num) == CFBooleanGetTypeID() {
    |                              `- error: cannot find 'CFBooleanGetTypeID' in scope
 42 |         self = .boolean(num.boolValue)
 43 |       } else if CFNumberIsFloatType(num) {
/host/spi-builder-workspace/Sources/JSONParsing/JSONValue/JSONValue+JSONSerialization.swift:43:17: error: cannot find 'CFNumberIsFloatType' in scope
 41 |       if CFGetTypeID(num) == CFBooleanGetTypeID() {
 42 |         self = .boolean(num.boolValue)
 43 |       } else if CFNumberIsFloatType(num) {
    |                 `- error: cannot find 'CFNumberIsFloatType' in scope
 44 |         self = .float(num.doubleValue)
 45 |       } else {
[517/524] Emitting module JSONParsing
/host/spi-builder-workspace/Sources/JSONParsing/JSONValue/JSONValue.swift:18:21: warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'JSONValue' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | /// A typed representation of a JSON value.
 4 | public enum JSONValue: Equatable {
   |             `- note: consider making enum 'JSONValue' conform to the 'Sendable' protocol
 5 |   case null
 6 |   case boolean(Bool)
   :
16 |   public init() { self = .empty }
17 |   /// An empty JSON object. Equivalent to `JSONValue.object([:])`.
18 |   public static let empty: JSONValue = .object([:])
   |                     |- warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'JSONValue' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: add '@MainActor' to make static property 'empty' part of global actor 'MainActor'
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 | }
20 |
[518/524] Compiling JSONParsing JSONValue+PrettyPrinting.swift
/host/spi-builder-workspace/Sources/JSONParsing/JSONValue/JSONValue.swift:18:21: warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'JSONValue' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | /// A typed representation of a JSON value.
 4 | public enum JSONValue: Equatable {
   |             `- note: consider making enum 'JSONValue' conform to the 'Sendable' protocol
 5 |   case null
 6 |   case boolean(Bool)
   :
16 |   public init() { self = .empty }
17 |   /// An empty JSON object. Equivalent to `JSONValue.object([:])`.
18 |   public static let empty: JSONValue = .object([:])
   |                     |- warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'JSONValue' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: add '@MainActor' to make static property 'empty' part of global actor 'MainActor'
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 | }
20 |
[519/524] Compiling JSONParsing JSONValue.swift
/host/spi-builder-workspace/Sources/JSONParsing/JSONValue/JSONValue.swift:18:21: warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'JSONValue' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | /// A typed representation of a JSON value.
 4 | public enum JSONValue: Equatable {
   |             `- note: consider making enum 'JSONValue' conform to the 'Sendable' protocol
 5 |   case null
 6 |   case boolean(Bool)
   :
16 |   public init() { self = .empty }
17 |   /// An empty JSON object. Equivalent to `JSONValue.object([:])`.
18 |   public static let empty: JSONValue = .object([:])
   |                     |- warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'JSONValue' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: add '@MainActor' to make static property 'empty' part of global actor 'MainActor'
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 | }
20 |
[520/524] Compiling JSONParsing Typealiases.swift
/host/spi-builder-workspace/Sources/JSONParsing/JSONValue/JSONValue.swift:18:21: warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'JSONValue' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | /// A typed representation of a JSON value.
 4 | public enum JSONValue: Equatable {
   |             `- note: consider making enum 'JSONValue' conform to the 'Sendable' protocol
 5 |   case null
 6 |   case boolean(Bool)
   :
16 |   public init() { self = .empty }
17 |   /// An empty JSON object. Equivalent to `JSONValue.object([:])`.
18 |   public static let empty: JSONValue = .object([:])
   |                     |- warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'JSONValue' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: add '@MainActor' to make static property 'empty' part of global actor 'MainActor'
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 | }
20 |
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.1-latest swift build --triple x86_64-unknown-linux-gnu 2>&1
basic-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:3bdcac04179f4ed3e5b8e9dbd6e74bbf5ebc0f4fde48bbaad7d1e5c757e65bcb
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.1-latest
[0/1] Planning build
[1/1] Compiling plugin GenerateManual
Building for debugging...
[1/32] Write swift-version-24593BA9C3E375BF.txt
[3/61] Compiling SwiftSyntax600 Empty.swift
[4/61] Compiling SwiftSyntax601 Empty.swift
[5/61] Emitting module SwiftSyntax601
[6/62] Emitting module SwiftSyntax510
[7/62] Compiling SwiftSyntax510 Empty.swift
[8/62] Emitting module SwiftSyntax600
[9/64] Compiling SwiftSyntax509 Empty.swift
[10/64] Emitting module SwiftSyntax509
[15/61] Compiling IssueReporting ErrorReporting.swift
[16/61] Compiling IssueReporting AppHostWarning.swift
[17/61] Compiling IssueReporting Deprecations.swift
[18/63] Compiling IssueReporting TestContext.swift
[19/63] Compiling IssueReporting Unimplemented.swift
[20/63] Compiling IssueReporting BreakpointReporter.swift
[21/63] Compiling IssueReporting FatalErrorReporter.swift
[22/63] Compiling IssueReporting XCTest.swift
[23/63] Compiling IssueReporting IsTesting.swift
[24/63] Compiling IssueReporting IssueReporter.swift
[25/63] Compiling IssueReporting RuntimeWarningReporter.swift
[26/63] Compiling IssueReporting ReportIssue.swift
[27/63] Emitting module IssueReporting
[28/63] Emitting module ArgumentParserToolInfo
[29/63] Compiling ArgumentParserToolInfo ToolInfo.swift
[31/119] Compiling SwiftSyntax SourceLocation.swift
[32/119] Compiling SwiftSyntax SourcePresence.swift
[33/127] Compiling SwiftSyntax Convenience.swift
[34/127] Compiling SwiftSyntax CustomTraits.swift
[35/127] Compiling SwiftSyntax EditorPlaceholder.swift
[36/127] Compiling SwiftSyntax Assert.swift
[37/127] Compiling SwiftSyntax BumpPtrAllocator.swift
[38/127] Compiling SwiftSyntax CommonAncestor.swift
[40/168] Compiling XCTestDynamicOverlay Exports.swift
[41/168] Emitting module XCTestDynamicOverlay
[42/168] Compiling XCTestDynamicOverlay Deprecations.swift
[44/178] Compiling CasePathsCore Never+CasePathable.swift
[45/178] Compiling CasePathsCore TypeName.swift
[46/178] Compiling CasePathsCore UncheckedSendable.swift
[47/179] Compiling CasePathsCore KeyPath+Sendable.swift
[48/179] Compiling CasePathsCore Optional+CasePathable.swift
[49/179] Compiling CasePathsCore AnyCasePath.swift
[50/179] Compiling CasePathsCore CasePathIterable.swift
[51/179] Emitting module CasePathsCore
[52/179] Compiling CasePathsCore CasePathReflectable.swift
[53/179] Compiling CasePathsCore CasePathable.swift
[54/179] Compiling CasePathsCore Result+CasePathable.swift
[56/179] Emitting module ArgumentParser
[57/184] Compiling ArgumentParser DumpHelpGenerator.swift
[58/184] Compiling ArgumentParser HelpCommand.swift
[59/184] Compiling ArgumentParser HelpGenerator.swift
[60/184] Compiling ArgumentParser MessageInfo.swift
[61/184] Compiling ArgumentParser UsageGenerator.swift
[62/184] Compiling ArgumentParser Name.swift
[63/184] Compiling ArgumentParser Parsed.swift
[64/184] Compiling ArgumentParser ParsedValues.swift
[65/184] Compiling ArgumentParser ParserError.swift
[66/184] Compiling ArgumentParser SplitArguments.swift
[71/184] Compiling ArgumentParser Argument.swift
[72/184] Compiling ArgumentParser ArgumentHelp.swift
[73/184] Compiling ArgumentParser OptionGroup.swift
[74/184] Compiling ArgumentParser AsyncParsableCommand.swift
[75/184] Compiling ArgumentParser CommandConfiguration.swift
[76/193] Compiling ArgumentParser ExpressibleByArgument.swift
[77/193] Compiling ArgumentParser ParsableArguments.swift
[78/193] Compiling ArgumentParser ParsableArgumentsValidation.swift
[79/193] Compiling ArgumentParser ParsableCommand.swift
[80/193] Compiling ArgumentParser ArgumentDecoder.swift
[84/193] Compiling ArgumentParser CommandGroup.swift
[85/193] Compiling ArgumentParser EnumerableFlag.swift
[92/193] Compiling ArgumentParser ArgumentDefinition.swift
[93/193] Compiling ArgumentParser ArgumentSet.swift
[94/193] Compiling ArgumentParser CommandParser.swift
[95/193] Compiling ArgumentParser InputKey.swift
[96/193] Compiling ArgumentParser InputOrigin.swift
[97/193] Compiling ArgumentParser ArgumentVisibility.swift
[98/193] Compiling ArgumentParser CompletionKind.swift
[99/193] Compiling ArgumentParser Errors.swift
[100/193] Compiling ArgumentParser Flag.swift
[101/193] Compiling ArgumentParser NameSpecification.swift
[102/193] Compiling ArgumentParser Option.swift
[103/193] Compiling ArgumentParser CollectionExtensions.swift
[104/193] Compiling ArgumentParser Platform.swift
[105/193] Compiling ArgumentParser SequenceExtensions.swift
[106/193] Compiling ArgumentParser StringExtensions.swift
[107/193] Compiling ArgumentParser Tree.swift
[109/209] Compiling Benchmark BenchmarkTermination.swift
[110/209] Compiling Benchmark BenchmarkTime.swift
[111/211] Compiling Benchmark BenchmarkState.swift
[112/211] Compiling Benchmark BenchmarkSuite.swift
[113/211] Compiling Benchmark BenchmarkRunner.swift
[114/211] Compiling Benchmark BenchmarkSetting.swift
[117/211] Compiling Benchmark Stats.swift
[118/211] Compiling Benchmark TestIntegration.swift
[131/211] Compiling Benchmark BenchmarkCommand.swift
[132/211] Compiling Benchmark BenchmarkFilter.swift
[135/211] Compiling Benchmark BenchmarkFormatter.swift
[136/211] Compiling Benchmark BenchmarkMain.swift
[137/211] Compiling Benchmark BenchmarkReporter.swift
[138/211] Compiling Benchmark BenchmarkResult.swift
[141/211] Compiling Benchmark Benchmark.swift
[142/211] Compiling Benchmark BenchmarkArguments.swift
[143/211] Compiling Benchmark BenchmarkColumn.swift
[144/211] Emitting module Benchmark
[145/212] Wrapping AST for Benchmark for debugging
[147/212] Emitting module SwiftSyntax
[148/212] Compiling SwiftSyntax RawSyntaxNodesC.swift
[149/212] Compiling SwiftSyntax RawSyntaxNodesD.swift
[150/212] Compiling SwiftSyntax RawSyntaxNodesEF.swift
[151/212] Compiling SwiftSyntax RawSyntaxNodesGHI.swift
[152/212] Compiling SwiftSyntax RawSyntaxNodesJKLMN.swift
[153/212] Compiling SwiftSyntax RawSyntaxNodesOP.swift
[154/212] Compiling SwiftSyntax RawSyntaxNodesQRS.swift
[155/212] Compiling SwiftSyntax RawSyntaxNodesTUVWXYZ.swift
[156/212] Compiling SwiftSyntax RawSyntaxValidation.swift
[157/212] Compiling SwiftSyntax SyntaxEnum.swift
[158/212] Compiling SwiftSyntax SyntaxKind.swift
[159/212] Compiling SwiftSyntax SyntaxRewriter.swift
[160/212] Compiling SwiftSyntax SyntaxTraits.swift
[161/212] Compiling SwiftSyntax SyntaxVisitor.swift
[162/212] Compiling SwiftSyntax TokenKind.swift
[163/212] Compiling SwiftSyntax Tokens.swift
[164/212] Compiling SwiftSyntax TriviaPieces.swift
[165/212] Compiling SwiftSyntax RawSyntaxNodesAB.swift
[181/212] Compiling SwiftSyntax SyntaxAnyVisitor.swift
[182/212] Compiling SwiftSyntax SyntaxBaseNodes.swift
[183/212] Compiling SwiftSyntax SyntaxCollections.swift
[184/212] Compiling SwiftSyntax SyntaxNodesAB.swift
[185/212] Compiling SwiftSyntax SyntaxNodesC.swift
[186/212] Compiling SwiftSyntax SyntaxNodesD.swift
[187/212] Compiling SwiftSyntax SyntaxNodesEF.swift
[188/212] Compiling SwiftSyntax SyntaxNodesGHI.swift
[189/212] Compiling SwiftSyntax SyntaxNodesJKLMN.swift
[190/212] Compiling SwiftSyntax SyntaxNodesOP.swift
[191/212] Compiling SwiftSyntax SyntaxNodesQRS.swift
[192/212] Compiling SwiftSyntax SyntaxNodesTUVWXYZ.swift
[194/270] Compiling SwiftParser CharacterInfo.swift
[195/270] Compiling SwiftParser CollectionNodes+Parsable.swift
[196/271] Emitting module SwiftDiagnostics
[197/271] Compiling SwiftParser Attributes.swift
[198/271] Compiling SwiftParser Availability.swift
[199/271] Compiling SwiftBasicFormat SyntaxProtocol+Formatted.swift
[200/271] Compiling SwiftBasicFormat Syntax+Extensions.swift
[201/271] Compiling SwiftBasicFormat Trivia+FormatExtensions.swift
[202/271] Compiling SwiftDiagnostics Message.swift
[203/271] Compiling SwiftDiagnostics Note.swift
[204/271] Compiling SwiftBasicFormat InferIndentation.swift
[205/271] Compiling SwiftBasicFormat Indenter.swift
[206/271] Compiling SwiftBasicFormat BasicFormat.swift
[207/271] Emitting module SwiftBasicFormat
[208/272] Compiling SwiftDiagnostics DiagnosticDecorator.swift
[209/272] Compiling SwiftDiagnostics DiagnosticsFormatter.swift
[211/271] Compiling SwiftDiagnostics FixIt.swift
[212/271] Compiling SwiftDiagnostics GroupedDiagnostics.swift
[214/271] Compiling SwiftParser SwiftParserCompatibility.swift
[215/271] Compiling SwiftParser SwiftVersion.swift
[216/271] Compiling SwiftParser SyntaxUtils.swift
[217/271] Compiling SwiftParser TokenConsumer.swift
[218/271] Compiling SwiftParser TokenPrecedence.swift
[219/271] Compiling SwiftParser TokenSpec.swift
[220/271] Compiling SwiftParser TokenSpecSet.swift
[221/271] Compiling SwiftParser TopLevel.swift
[222/271] Compiling SwiftParser TriviaParser.swift
[223/271] Compiling SwiftParser Types.swift
[224/276] Compiling SwiftParser Modifiers.swift
[225/276] Compiling SwiftParser Names.swift
[226/276] Compiling SwiftParser Nominals.swift
[227/276] Compiling SwiftParser Parameters.swift
[228/276] Compiling SwiftParser ParseSourceFile.swift
[229/276] Compiling SwiftParser Parser.swift
[230/276] Compiling SwiftParser LexemeSequence.swift
[231/276] Compiling SwiftParser Lexer.swift
[232/276] Compiling SwiftParser RegexLiteralLexer.swift
[233/276] Compiling SwiftParser UnicodeScalarExtensions.swift
[234/276] Compiling SwiftParser Lookahead.swift
[235/276] Compiling SwiftParser LoopProgressCondition.swift
[236/276] Compiling SwiftParser Patterns.swift
[237/276] Compiling SwiftParser Recovery.swift
[238/276] Compiling SwiftParser Specifiers.swift
[239/276] Compiling SwiftParser Statements.swift
[240/276] Compiling SwiftParser StringLiteralRepresentedLiteralValue.swift
[241/276] Compiling SwiftParser StringLiterals.swift
[242/276] Emitting module SwiftParser
[247/276] Compiling SwiftParser Declarations.swift
[248/276] Compiling SwiftParser Directives.swift
[249/276] Compiling SwiftParser ExpressionInterpretedAsVersionTuple.swift
[250/276] Compiling SwiftParser Expressions.swift
[251/276] Compiling SwiftParser IncrementalParseTransition.swift
[252/276] Compiling SwiftParser IsValidIdentifier.swift
[253/276] Compiling SwiftParser Cursor.swift
[254/276] Compiling SwiftParser Lexeme.swift
[255/276] Compiling SwiftParser ExperimentalFeatures.swift
[256/276] Compiling SwiftParser IsLexerClassified.swift
[257/276] Compiling SwiftParser LayoutNodes+Parsable.swift
[258/276] Compiling SwiftParser Parser+TokenSpecSet.swift
[259/276] Compiling SwiftParser TokenSpecStaticMembers.swift
[261/299] Compiling SwiftParserDiagnostics SyntaxKindNameForDiagnostics.swift
[262/300] Compiling SwiftParserDiagnostics TokenNameForDiagnostics.swift
[263/300] Compiling SwiftOperators PrecedenceGraph.swift
[264/300] Compiling SwiftOperators PrecedenceGroup.swift
[265/300] Compiling SwiftOperators OperatorTable.swift
[266/301] Compiling SwiftOperators OperatorTable+Semantics.swift
[267/301] Compiling SwiftParserDiagnostics ChildNameForDiagnostics.swift
[268/301] Emitting module SwiftOperators
[269/301] Compiling SwiftParserDiagnostics SyntaxExtensions.swift
[270/301] Compiling SwiftParserDiagnostics Utils.swift
[271/301] Compiling SwiftOperators SyntaxSynthesis.swift
[272/301] Compiling SwiftOperators OperatorError.swift
[273/301] Compiling SwiftOperators OperatorTable+Defaults.swift
[274/301] Compiling SwiftOperators Operator.swift
[275/301] Compiling SwiftOperators OperatorError+Diagnostics.swift
[276/301] Compiling SwiftOperators OperatorTable+Folding.swift
[278/302] Compiling SwiftParserDiagnostics ParserDiagnosticMessages.swift
[279/302] Compiling SwiftParserDiagnostics PresenceUtils.swift
[280/301] Compiling SwiftParserDiagnostics MissingNodesError.swift
[281/301] Compiling SwiftParserDiagnostics MissingTokenError.swift
[284/301] Emitting module SwiftParserDiagnostics
[288/316] Compiling SwiftSyntaxBuilder Indenter.swift
[289/316] Compiling SwiftSyntaxBuilder ListBuilder.swift
[290/317] Emitting module SwiftSyntaxBuilder
[291/317] Compiling SwiftSyntaxBuilder ResultBuilderExtensions.swift
[292/317] Compiling SwiftSyntaxBuilder SwiftSyntaxBuilderCompatibility.swift
[293/317] Compiling SwiftSyntaxBuilder ConvenienceInitializers.swift
[294/317] Compiling SwiftSyntaxBuilder DeclSyntaxParseable.swift
[295/317] Compiling SwiftSyntaxBuilder Syntax+StringInterpolation.swift
[296/317] Compiling SwiftSyntaxBuilder SyntaxNodeWithBody.swift
[297/317] Compiling SwiftSyntaxBuilder SyntaxExpressibleByStringInterpolationConformances.swift
[298/317] Compiling SwiftSyntaxBuilder WithTrailingCommaSyntax+EnsuringTrailingComma.swift
[299/317] Compiling SwiftSyntaxBuilder BuildableNodes.swift
[300/317] Compiling SwiftSyntaxBuilder SyntaxParsable+ExpressibleByStringInterpolation.swift
[301/317] Compiling SwiftSyntaxBuilder ValidatingSyntaxNodes.swift
[302/317] Compiling SwiftSyntaxBuilder RenamedChildrenBuilderCompatibility.swift
[303/317] Compiling SwiftSyntaxBuilder ResultBuilders.swift
[305/334] Compiling SwiftSyntaxMacros CodeItemMacro.swift
[306/334] Compiling SwiftSyntaxMacros DeclarationMacro.swift
[307/336] Compiling SwiftSyntaxMacros AccessorMacro.swift
[308/336] Compiling SwiftSyntaxMacros AttachedMacro.swift
[309/336] Compiling SwiftSyntaxMacros BodyMacro.swift
[310/336] Compiling SwiftSyntaxMacros ExpressionMacro.swift
[311/336] Compiling SwiftSyntaxMacros ExtensionMacro.swift
[312/336] Compiling SwiftSyntaxMacros MemberMacro.swift
[313/336] Compiling SwiftSyntaxMacros PeerMacro.swift
[314/336] Compiling SwiftSyntaxMacros Macro.swift
[315/336] Compiling SwiftSyntaxMacros MemberAttributeMacro.swift
[316/336] Emitting module SwiftSyntaxMacros
[317/336] Compiling SwiftSyntaxMacros FreestandingMacro.swift
[318/336] Compiling SwiftSyntaxMacros Macro+Format.swift
[319/336] Compiling SwiftSyntaxMacros AbstractSourceLocation.swift
[320/336] Compiling SwiftSyntaxMacros MacroExpansionContext.swift
[321/336] Compiling SwiftSyntaxMacros MacroExpansionDiagnosticMessages.swift
[322/336] Compiling SwiftSyntaxMacros PreambleMacro.swift
[323/336] Compiling SwiftSyntaxMacros Syntax+LexicalContext.swift
[325/345] Compiling SwiftSyntaxMacroExpansion MacroExpansionDiagnosticMessages.swift
[326/346] Compiling SwiftSyntaxMacroExpansion MacroSpec.swift
[327/346] Compiling SwiftSyntaxMacroExpansion BasicMacroExpansionContext.swift
[328/346] Compiling SwiftSyntaxMacroExpansion FunctionParameterUtils.swift
[329/346] Compiling SwiftSyntaxMacroExpansion IndentationUtils.swift
[330/346] Emitting module SwiftSyntaxMacroExpansion
[331/346] Compiling SwiftSyntaxMacroExpansion MacroExpansion.swift
[332/346] Compiling SwiftSyntaxMacroExpansion MacroArgument.swift
[333/346] Compiling SwiftSyntaxMacroExpansion MacroReplacement.swift
[334/346] Compiling SwiftSyntaxMacroExpansion MacroSystem.swift
[336/358] Compiling SwiftCompilerPluginMessageHandling LRUCache.swift
[337/358] Compiling SwiftCompilerPluginMessageHandling Macros.swift
[338/359] Compiling SwiftCompilerPluginMessageHandling StandardIOMessageConnection.swift
[339/359] Compiling SwiftCompilerPluginMessageHandling PluginMacroExpansionContext.swift
[340/359] Compiling SwiftCompilerPluginMessageHandling PluginMessages.swift
[341/359] Compiling SwiftCompilerPluginMessageHandling PluginMessageCompatibility.swift
[342/359] Compiling SwiftCompilerPluginMessageHandling CodingUtilities.swift
[343/359] Compiling SwiftCompilerPluginMessageHandling JSON.swift
[344/359] Emitting module SwiftCompilerPluginMessageHandling
[345/359] Compiling SwiftCompilerPluginMessageHandling CompilerPluginMessageHandler.swift
[346/359] Compiling SwiftCompilerPluginMessageHandling Diagnostics.swift
[347/359] Compiling SwiftCompilerPluginMessageHandling JSONDecoding.swift
[348/359] Compiling SwiftCompilerPluginMessageHandling JSONEncoding.swift
[350/361] Emitting module SwiftCompilerPlugin
[351/361] Compiling SwiftCompilerPlugin CompilerPlugin.swift
[353/364] Compiling CasePathsMacros Plugin.swift
[354/364] Emitting module CasePathsMacros
[355/364] Compiling CasePathsMacros CasePathableMacro.swift
[356/364] Write Objects.LinkFileList
[357/364] Linking CasePathsMacros-tool
[359/371] Compiling CasePaths Deprecations.swift
[360/371] Compiling CasePaths Exports.swift
[361/371] Compiling CasePaths LockIsolated.swift
[362/371] Compiling CasePaths XCTestSupport.swift
[363/371] Compiling CasePaths Macros.swift
[364/371] Compiling CasePaths EnumReflection.swift
[365/371] Emitting module CasePaths
[367/438] Compiling Parsing Identity.swift
[368/438] Compiling Parsing JSON.swift
[369/438] Compiling Parsing LosslessStringConvertible.swift
[370/438] Compiling Parsing Memberwise.swift
[371/438] Compiling Parsing ParseableFormatStyleConversion.swift
[372/438] Compiling Parsing RawRepresentable.swift
[373/438] Compiling Parsing String.swift
[374/438] Compiling Parsing Substring.swift
[375/438] Compiling Parsing UTF8View.swift
[376/438] Compiling Parsing ConvertingError.swift
[377/447] Compiling Parsing OneOf.swift
[378/447] Compiling Parsing OneOfMany.swift
[379/447] Compiling Parsing Optional.swift
[380/447] Compiling Parsing Optionally.swift
[381/447] Compiling Parsing Parse.swift
[382/447] Compiling Parsing ParseableFormatStyle.swift
[383/447] Compiling Parsing Peek.swift
[384/447] Compiling Parsing Pipe.swift
[385/447] Compiling Parsing Prefix.swift
[386/447] Compiling Parsing OneOfBuilder.swift
[387/447] Compiling Parsing ParserBuilder.swift
[388/447] Compiling Parsing Conversion.swift
[389/447] Compiling Parsing AnyConversion.swift
[390/447] Compiling Parsing BinaryFloatingPoint.swift
[391/447] Compiling Parsing ConversionMap.swift
[392/447] Compiling Parsing Conversions.swift
[393/447] Compiling Parsing Data.swift
[394/447] Compiling Parsing Enum.swift
[395/447] Compiling Parsing FixedWidthInteger.swift
[396/447] Compiling Parsing Float.swift
[397/447] Compiling Parsing From.swift
[398/447] Compiling Parsing Int.swift
[399/447] Compiling Parsing Lazy.swift
[400/447] Compiling Parsing Literal.swift
[401/447] Compiling Parsing Many.swift
[402/447] Compiling Parsing Map.swift
[403/447] Compiling Parsing Newline.swift
[404/447] Compiling Parsing Not.swift
[405/447] Compiling Parsing PrefixThrough.swift
[406/447] Compiling Parsing PrefixUpTo.swift
[407/447] Compiling Parsing Printing.swift
[408/447] Compiling Parsing Pullback.swift
[409/447] Compiling Parsing ReplaceError.swift
[410/447] Compiling Parsing Rest.swift
[411/447] Compiling Parsing Skip.swift
[412/447] Compiling Parsing StartsWith.swift
[413/447] Compiling Parsing UUID.swift
[414/447] Compiling Parsing CountingRange.swift
[415/447] Compiling Parsing EmptyInitializable.swift
[416/447] Compiling Parsing AnyEquatable.swift
[417/447] Compiling Parsing Deprecations.swift
[418/447] Compiling Parsing Parser.swift
[419/447] Compiling Parsing ParserPrinter.swift
[420/447] Compiling Parsing Always.swift
[421/447] Compiling Parsing AnyParserPrinter.swift
[422/447] Compiling Parsing Backtracking.swift
[423/447] Compiling Parsing Bool.swift
[424/447] Compiling Parsing CaseIterableRawRepresentable.swift
[425/447] Compiling Parsing CharacterSet.swift
[426/447] Compiling Parsing Conditional.swift
[427/447] Compiling Parsing Consumed.swift
[428/447] Compiling Parsing Digits.swift
[429/447] Compiling Parsing End.swift
[430/447] Compiling Parsing Fail.swift
[431/447] Compiling Parsing Filter.swift
[432/447] Compiling Parsing First.swift
[433/447] Emitting module Parsing
[434/447] Compiling Parsing Whitespace.swift
[435/447] Compiling Parsing AnyParser.swift
[436/447] Compiling Parsing CompactMap.swift
[437/447] Compiling Parsing FlatMap.swift
[438/447] Compiling Parsing Parsers.swift
[439/447] Compiling Parsing Stream.swift
[440/447] Compiling Parsing ParsingError.swift
[441/447] Compiling Parsing PrependableCollection.swift
[442/447] Compiling Parsing PrintingError.swift
[443/448] Wrapping AST for Parsing for debugging
[445/471] Compiling JSONParsing JSONPrintingError+Codable.swift
/host/spi-builder-workspace/Sources/JSONParsing/JSONValue/JSONValue+JSONSerialization.swift:15:57: error: type 'JSONSerialization.ReadingOptions' has no member 'json5Allowed'
 13 |   @available(macOS 12.0, iOS 15.0, tvOS 15.0, watchOS 8.0, *)
 14 |   public init(_ jsonData: Data, allowJSON5: Bool) throws {
 15 |     try self.init(jsonData, extraOptions: allowJSON5 ? .json5Allowed : [])
    |                                                         `- error: type 'JSONSerialization.ReadingOptions' has no member 'json5Allowed'
 16 |   }
 17 |
/host/spi-builder-workspace/Sources/JSONParsing/JSONValue/JSONValue+JSONSerialization.swift:41:10: error: cannot find 'CFGetTypeID' in scope
 39 |       self = .null
 40 |     case let num as NSNumber:
 41 |       if CFGetTypeID(num) == CFBooleanGetTypeID() {
    |          `- error: cannot find 'CFGetTypeID' in scope
 42 |         self = .boolean(num.boolValue)
 43 |       } else if CFNumberIsFloatType(num) {
/host/spi-builder-workspace/Sources/JSONParsing/JSONValue/JSONValue+JSONSerialization.swift:41:30: error: cannot find 'CFBooleanGetTypeID' in scope
 39 |       self = .null
 40 |     case let num as NSNumber:
 41 |       if CFGetTypeID(num) == CFBooleanGetTypeID() {
    |                              `- error: cannot find 'CFBooleanGetTypeID' in scope
 42 |         self = .boolean(num.boolValue)
 43 |       } else if CFNumberIsFloatType(num) {
/host/spi-builder-workspace/Sources/JSONParsing/JSONValue/JSONValue+JSONSerialization.swift:43:17: error: cannot find 'CFNumberIsFloatType' in scope
 41 |       if CFGetTypeID(num) == CFBooleanGetTypeID() {
 42 |         self = .boolean(num.boolValue)
 43 |       } else if CFNumberIsFloatType(num) {
    |                 `- error: cannot find 'CFNumberIsFloatType' in scope
 44 |         self = .float(num.doubleValue)
 45 |       } else {
[446/471] Compiling JSONParsing JSONValue+Codable.swift
/host/spi-builder-workspace/Sources/JSONParsing/JSONValue/JSONValue+JSONSerialization.swift:15:57: error: type 'JSONSerialization.ReadingOptions' has no member 'json5Allowed'
 13 |   @available(macOS 12.0, iOS 15.0, tvOS 15.0, watchOS 8.0, *)
 14 |   public init(_ jsonData: Data, allowJSON5: Bool) throws {
 15 |     try self.init(jsonData, extraOptions: allowJSON5 ? .json5Allowed : [])
    |                                                         `- error: type 'JSONSerialization.ReadingOptions' has no member 'json5Allowed'
 16 |   }
 17 |
/host/spi-builder-workspace/Sources/JSONParsing/JSONValue/JSONValue+JSONSerialization.swift:41:10: error: cannot find 'CFGetTypeID' in scope
 39 |       self = .null
 40 |     case let num as NSNumber:
 41 |       if CFGetTypeID(num) == CFBooleanGetTypeID() {
    |          `- error: cannot find 'CFGetTypeID' in scope
 42 |         self = .boolean(num.boolValue)
 43 |       } else if CFNumberIsFloatType(num) {
/host/spi-builder-workspace/Sources/JSONParsing/JSONValue/JSONValue+JSONSerialization.swift:41:30: error: cannot find 'CFBooleanGetTypeID' in scope
 39 |       self = .null
 40 |     case let num as NSNumber:
 41 |       if CFGetTypeID(num) == CFBooleanGetTypeID() {
    |                              `- error: cannot find 'CFBooleanGetTypeID' in scope
 42 |         self = .boolean(num.boolValue)
 43 |       } else if CFNumberIsFloatType(num) {
/host/spi-builder-workspace/Sources/JSONParsing/JSONValue/JSONValue+JSONSerialization.swift:43:17: error: cannot find 'CFNumberIsFloatType' in scope
 41 |       if CFGetTypeID(num) == CFBooleanGetTypeID() {
 42 |         self = .boolean(num.boolValue)
 43 |       } else if CFNumberIsFloatType(num) {
    |                 `- error: cannot find 'CFNumberIsFloatType' in scope
 44 |         self = .float(num.doubleValue)
 45 |       } else {
[447/471] Compiling JSONParsing JSONValue+JSONSerialization.swift
/host/spi-builder-workspace/Sources/JSONParsing/JSONValue/JSONValue+JSONSerialization.swift:15:57: error: type 'JSONSerialization.ReadingOptions' has no member 'json5Allowed'
 13 |   @available(macOS 12.0, iOS 15.0, tvOS 15.0, watchOS 8.0, *)
 14 |   public init(_ jsonData: Data, allowJSON5: Bool) throws {
 15 |     try self.init(jsonData, extraOptions: allowJSON5 ? .json5Allowed : [])
    |                                                         `- error: type 'JSONSerialization.ReadingOptions' has no member 'json5Allowed'
 16 |   }
 17 |
/host/spi-builder-workspace/Sources/JSONParsing/JSONValue/JSONValue+JSONSerialization.swift:41:10: error: cannot find 'CFGetTypeID' in scope
 39 |       self = .null
 40 |     case let num as NSNumber:
 41 |       if CFGetTypeID(num) == CFBooleanGetTypeID() {
    |          `- error: cannot find 'CFGetTypeID' in scope
 42 |         self = .boolean(num.boolValue)
 43 |       } else if CFNumberIsFloatType(num) {
/host/spi-builder-workspace/Sources/JSONParsing/JSONValue/JSONValue+JSONSerialization.swift:41:30: error: cannot find 'CFBooleanGetTypeID' in scope
 39 |       self = .null
 40 |     case let num as NSNumber:
 41 |       if CFGetTypeID(num) == CFBooleanGetTypeID() {
    |                              `- error: cannot find 'CFBooleanGetTypeID' in scope
 42 |         self = .boolean(num.boolValue)
 43 |       } else if CFNumberIsFloatType(num) {
/host/spi-builder-workspace/Sources/JSONParsing/JSONValue/JSONValue+JSONSerialization.swift:43:17: error: cannot find 'CFNumberIsFloatType' in scope
 41 |       if CFGetTypeID(num) == CFBooleanGetTypeID() {
 42 |         self = .boolean(num.boolValue)
 43 |       } else if CFNumberIsFloatType(num) {
    |                 `- error: cannot find 'CFNumberIsFloatType' in scope
 44 |         self = .float(num.doubleValue)
 45 |       } else {
[448/474] Emitting module JSONParsing
[449/474] Compiling JSONParsing URL+JSONParsing.swift
[450/474] Compiling JSONParsing UUID+JSONParsing.swift
[451/474] Compiling JSONParsing JSONParser+DecodeEncode.swift
[452/474] Compiling JSONParsing Null.swift
[453/474] Compiling JSONParsing OptionalField.swift
[454/474] Compiling JSONParsing DecodableJSONParser.swift
[455/474] Compiling JSONParsing JSONParsingError.swift
[456/474] Compiling JSONParsing JSONPrintingError.swift
[457/474] Compiling JSONParsing Exports.swift
[458/474] Compiling JSONParsing Date+JSONParsing.swift
[459/474] Compiling JSONParsing Field.swift
[460/474] Compiling JSONParsing JSONArray.swift
[461/474] Compiling JSONParsing JSONBoolean.swift
[462/474] Compiling JSONParsing JSONValue+PrettyPrinting.swift
[463/474] Compiling JSONParsing JSONValue.swift
[464/474] Compiling JSONParsing Typealiases.swift
[465/474] Compiling JSONParsing DecodingContainers+JSONParsing.swift
[466/474] Compiling JSONParsing EncodingContainers+JSONParsing.swift
[467/474] Compiling JSONParsing JSONParsingError+Codable.swift
[468/474] Compiling JSONParsing JSONNumber.swift
[469/474] Compiling JSONParsing JSONObject.swift
[470/474] Compiling JSONParsing JSONString.swift
BUILD FAILURE 6.1 linux