The Swift Package Index logo.Swift Package Index

Has it really been five years since Swift Package Index launched? Read our anniversary blog post!

Build Information

Failed to build SwiftSyntax, reference 509.0.0-swift-DEVELOPMENT-SNAPSHOT-2023-05-20-a (83c2be), with Swift 6.1 for Android on 29 May 2025 12:51:14 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4609320-1":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:android-6.1-latest swift build --swift-sdk aarch64-unknown-linux-android24 2>&1

Build Log

19 |
20 |   /// The named precedence group is missing from the precedence graph.
21 |   case missingGroup(PrecedenceGroupName, referencedFrom: Syntax)
   |        `- warning: associated value 'missingGroup(_:referencedFrom:)' of 'Sendable'-conforming enum 'OperatorError' has non-sendable type 'Syntax'; this is an error in the Swift 6 language mode
22 |
23 |   /// Error produced when a given operator already exists.
/host/spi-builder-workspace/Sources/SwiftSyntax/Syntax.swift:54:15: note: struct 'Syntax' does not conform to the 'Sendable' protocol
 52 | /// Each node has accessors for its known children, and allows efficient
 53 | /// iteration over the children through its `children` property.
 54 | public struct Syntax: SyntaxProtocol, SyntaxHashable {
    |               `- note: struct 'Syntax' does not conform to the 'Sendable' protocol
 55 |   let data: SyntaxData
 56 |
/host/spi-builder-workspace/Sources/SwiftOperators/OperatorError.swift:12:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftSyntax'
10 | //
11 | //===----------------------------------------------------------------------===//
12 | import SwiftSyntax
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftSyntax'
13 |
14 | /// Describes errors that can occur when working with user-defined operators.
/host/spi-builder-workspace/Sources/SwiftOperators/OperatorError.swift:24:8: warning: associated value 'operatorAlreadyExists(existing:new:)' of 'Sendable'-conforming enum 'OperatorError' has non-sendable type 'Operator'; this is an error in the Swift 6 language mode
22 |
23 |   /// Error produced when a given operator already exists.
24 |   case operatorAlreadyExists(existing: Operator, new: Operator)
   |        `- warning: associated value 'operatorAlreadyExists(existing:new:)' of 'Sendable'-conforming enum 'OperatorError' has non-sendable type 'Operator'; this is an error in the Swift 6 language mode
25 |
26 |   /// The named operator is missing from the precedence graph.
/host/spi-builder-workspace/Sources/SwiftOperators/Operator.swift:34:15: note: consider making struct 'Operator' conform to the 'Sendable' protocol
32 |
33 | /// Describes an operator.
34 | public struct Operator {
   |               `- note: consider making struct 'Operator' conform to the 'Sendable' protocol
35 |   public let kind: OperatorKind
36 |   public let name: OperatorName
/host/spi-builder-workspace/Sources/SwiftOperators/OperatorError.swift:24:8: warning: associated value 'operatorAlreadyExists(existing:new:)' of 'Sendable'-conforming enum 'OperatorError' has non-sendable type 'Operator'; this is an error in the Swift 6 language mode
22 |
23 |   /// Error produced when a given operator already exists.
24 |   case operatorAlreadyExists(existing: Operator, new: Operator)
   |        `- warning: associated value 'operatorAlreadyExists(existing:new:)' of 'Sendable'-conforming enum 'OperatorError' has non-sendable type 'Operator'; this is an error in the Swift 6 language mode
25 |
26 |   /// The named operator is missing from the precedence graph.
/host/spi-builder-workspace/Sources/SwiftOperators/Operator.swift:34:15: note: consider making struct 'Operator' conform to the 'Sendable' protocol
32 |
33 | /// Describes an operator.
34 | public struct Operator {
   |               `- note: consider making struct 'Operator' conform to the 'Sendable' protocol
35 |   public let kind: OperatorKind
36 |   public let name: OperatorName
/host/spi-builder-workspace/Sources/SwiftOperators/OperatorError.swift:27:8: warning: associated value 'missingOperator(_:referencedFrom:)' of 'Sendable'-conforming enum 'OperatorError' has non-sendable type 'Syntax'; this is an error in the Swift 6 language mode
25 |
26 |   /// The named operator is missing from the precedence graph.
27 |   case missingOperator(OperatorName, referencedFrom: Syntax)
   |        `- warning: associated value 'missingOperator(_:referencedFrom:)' of 'Sendable'-conforming enum 'OperatorError' has non-sendable type 'Syntax'; this is an error in the Swift 6 language mode
28 |
29 |   /// No associativity relationship between operators.
/host/spi-builder-workspace/Sources/SwiftSyntax/Syntax.swift:54:15: note: struct 'Syntax' does not conform to the 'Sendable' protocol
 52 | /// Each node has accessors for its known children, and allows efficient
 53 | /// iteration over the children through its `children` property.
 54 | public struct Syntax: SyntaxProtocol, SyntaxHashable {
    |               `- note: struct 'Syntax' does not conform to the 'Sendable' protocol
 55 |   let data: SyntaxData
 56 |
/host/spi-builder-workspace/Sources/SwiftOperators/OperatorError.swift:30:8: warning: associated value 'incomparableOperators(leftOperator:leftPrecedenceGroup:rightOperator:rightPrecedenceGroup:)' of 'Sendable'-conforming enum 'OperatorError' has non-sendable type 'ExprSyntax'; this is an error in the Swift 6 language mode
28 |
29 |   /// No associativity relationship between operators.
30 |   case incomparableOperators(
   |        `- warning: associated value 'incomparableOperators(leftOperator:leftPrecedenceGroup:rightOperator:rightPrecedenceGroup:)' of 'Sendable'-conforming enum 'OperatorError' has non-sendable type 'ExprSyntax'; this is an error in the Swift 6 language mode
31 |     leftOperator: ExprSyntax,
32 |     leftPrecedenceGroup: PrecedenceGroupName,
/host/spi-builder-workspace/Sources/SwiftSyntax/generated/SyntaxBaseNodes.swift:173:15: note: struct 'ExprSyntax' does not conform to the 'Sendable' protocol
171 | }
172 |
173 | public struct ExprSyntax: ExprSyntaxProtocol, SyntaxHashable {
    |               `- note: struct 'ExprSyntax' does not conform to the 'Sendable' protocol
174 |   public let _syntaxNode: Syntax
175 |
/host/spi-builder-workspace/Sources/SwiftOperators/OperatorError.swift:30:8: warning: associated value 'incomparableOperators(leftOperator:leftPrecedenceGroup:rightOperator:rightPrecedenceGroup:)' of 'Sendable'-conforming enum 'OperatorError' has non-sendable type 'ExprSyntax'; this is an error in the Swift 6 language mode
28 |
29 |   /// No associativity relationship between operators.
30 |   case incomparableOperators(
   |        `- warning: associated value 'incomparableOperators(leftOperator:leftPrecedenceGroup:rightOperator:rightPrecedenceGroup:)' of 'Sendable'-conforming enum 'OperatorError' has non-sendable type 'ExprSyntax'; this is an error in the Swift 6 language mode
31 |     leftOperator: ExprSyntax,
32 |     leftPrecedenceGroup: PrecedenceGroupName,
/host/spi-builder-workspace/Sources/SwiftSyntax/generated/SyntaxBaseNodes.swift:173:15: note: struct 'ExprSyntax' does not conform to the 'Sendable' protocol
171 | }
172 |
173 | public struct ExprSyntax: ExprSyntaxProtocol, SyntaxHashable {
    |               `- note: struct 'ExprSyntax' does not conform to the 'Sendable' protocol
174 |   public let _syntaxNode: Syntax
175 |
[204/231] Compiling SwiftOperators OperatorTable+Folding.swift
[205/231] Compiling SwiftOperators OperatorError.swift
/host/spi-builder-workspace/Sources/SwiftOperators/OperatorError.swift:18:8: warning: associated value 'groupAlreadyExists(existing:new:)' of 'Sendable'-conforming enum 'OperatorError' has non-sendable type 'PrecedenceGroup'; this is an error in the Swift 6 language mode
16 |   /// Error produced when a given precedence group already exists in the
17 |   /// precedence graph.
18 |   case groupAlreadyExists(existing: PrecedenceGroup, new: PrecedenceGroup)
   |        `- warning: associated value 'groupAlreadyExists(existing:new:)' of 'Sendable'-conforming enum 'OperatorError' has non-sendable type 'PrecedenceGroup'; this is an error in the Swift 6 language mode
19 |
20 |   /// The named precedence group is missing from the precedence graph.
/host/spi-builder-workspace/Sources/SwiftOperators/PrecedenceGroup.swift:96:15: note: consider making struct 'PrecedenceGroup' conform to the 'Sendable' protocol
 94 | ///
 95 | ///     infix operator *: MultiplicationPrecedence
 96 | public struct PrecedenceGroup {
    |               `- note: consider making struct 'PrecedenceGroup' conform to the 'Sendable' protocol
 97 |   /// The name of the group, which must be unique.
 98 |   public var name: PrecedenceGroupName
/host/spi-builder-workspace/Sources/SwiftOperators/OperatorError.swift:18:8: warning: associated value 'groupAlreadyExists(existing:new:)' of 'Sendable'-conforming enum 'OperatorError' has non-sendable type 'PrecedenceGroup'; this is an error in the Swift 6 language mode
16 |   /// Error produced when a given precedence group already exists in the
17 |   /// precedence graph.
18 |   case groupAlreadyExists(existing: PrecedenceGroup, new: PrecedenceGroup)
   |        `- warning: associated value 'groupAlreadyExists(existing:new:)' of 'Sendable'-conforming enum 'OperatorError' has non-sendable type 'PrecedenceGroup'; this is an error in the Swift 6 language mode
19 |
20 |   /// The named precedence group is missing from the precedence graph.
/host/spi-builder-workspace/Sources/SwiftOperators/PrecedenceGroup.swift:96:15: note: consider making struct 'PrecedenceGroup' conform to the 'Sendable' protocol
 94 | ///
 95 | ///     infix operator *: MultiplicationPrecedence
 96 | public struct PrecedenceGroup {
    |               `- note: consider making struct 'PrecedenceGroup' conform to the 'Sendable' protocol
 97 |   /// The name of the group, which must be unique.
 98 |   public var name: PrecedenceGroupName
/host/spi-builder-workspace/Sources/SwiftOperators/OperatorError.swift:21:8: warning: associated value 'missingGroup(_:referencedFrom:)' of 'Sendable'-conforming enum 'OperatorError' has non-sendable type 'Syntax'; this is an error in the Swift 6 language mode
19 |
20 |   /// The named precedence group is missing from the precedence graph.
21 |   case missingGroup(PrecedenceGroupName, referencedFrom: Syntax)
   |        `- warning: associated value 'missingGroup(_:referencedFrom:)' of 'Sendable'-conforming enum 'OperatorError' has non-sendable type 'Syntax'; this is an error in the Swift 6 language mode
22 |
23 |   /// Error produced when a given operator already exists.
/host/spi-builder-workspace/Sources/SwiftSyntax/Syntax.swift:54:15: note: struct 'Syntax' does not conform to the 'Sendable' protocol
 52 | /// Each node has accessors for its known children, and allows efficient
 53 | /// iteration over the children through its `children` property.
 54 | public struct Syntax: SyntaxProtocol, SyntaxHashable {
    |               `- note: struct 'Syntax' does not conform to the 'Sendable' protocol
 55 |   let data: SyntaxData
 56 |
/host/spi-builder-workspace/Sources/SwiftOperators/OperatorError.swift:12:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftSyntax'
10 | //
11 | //===----------------------------------------------------------------------===//
12 | import SwiftSyntax
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftSyntax'
13 |
14 | /// Describes errors that can occur when working with user-defined operators.
/host/spi-builder-workspace/Sources/SwiftOperators/OperatorError.swift:24:8: warning: associated value 'operatorAlreadyExists(existing:new:)' of 'Sendable'-conforming enum 'OperatorError' has non-sendable type 'Operator'; this is an error in the Swift 6 language mode
22 |
23 |   /// Error produced when a given operator already exists.
24 |   case operatorAlreadyExists(existing: Operator, new: Operator)
   |        `- warning: associated value 'operatorAlreadyExists(existing:new:)' of 'Sendable'-conforming enum 'OperatorError' has non-sendable type 'Operator'; this is an error in the Swift 6 language mode
25 |
26 |   /// The named operator is missing from the precedence graph.
/host/spi-builder-workspace/Sources/SwiftOperators/Operator.swift:34:15: note: consider making struct 'Operator' conform to the 'Sendable' protocol
32 |
33 | /// Describes an operator.
34 | public struct Operator {
   |               `- note: consider making struct 'Operator' conform to the 'Sendable' protocol
35 |   public let kind: OperatorKind
36 |   public let name: OperatorName
/host/spi-builder-workspace/Sources/SwiftOperators/OperatorError.swift:24:8: warning: associated value 'operatorAlreadyExists(existing:new:)' of 'Sendable'-conforming enum 'OperatorError' has non-sendable type 'Operator'; this is an error in the Swift 6 language mode
22 |
23 |   /// Error produced when a given operator already exists.
24 |   case operatorAlreadyExists(existing: Operator, new: Operator)
   |        `- warning: associated value 'operatorAlreadyExists(existing:new:)' of 'Sendable'-conforming enum 'OperatorError' has non-sendable type 'Operator'; this is an error in the Swift 6 language mode
25 |
26 |   /// The named operator is missing from the precedence graph.
/host/spi-builder-workspace/Sources/SwiftOperators/Operator.swift:34:15: note: consider making struct 'Operator' conform to the 'Sendable' protocol
32 |
33 | /// Describes an operator.
34 | public struct Operator {
   |               `- note: consider making struct 'Operator' conform to the 'Sendable' protocol
35 |   public let kind: OperatorKind
36 |   public let name: OperatorName
/host/spi-builder-workspace/Sources/SwiftOperators/OperatorError.swift:27:8: warning: associated value 'missingOperator(_:referencedFrom:)' of 'Sendable'-conforming enum 'OperatorError' has non-sendable type 'Syntax'; this is an error in the Swift 6 language mode
25 |
26 |   /// The named operator is missing from the precedence graph.
27 |   case missingOperator(OperatorName, referencedFrom: Syntax)
   |        `- warning: associated value 'missingOperator(_:referencedFrom:)' of 'Sendable'-conforming enum 'OperatorError' has non-sendable type 'Syntax'; this is an error in the Swift 6 language mode
28 |
29 |   /// No associativity relationship between operators.
/host/spi-builder-workspace/Sources/SwiftSyntax/Syntax.swift:54:15: note: struct 'Syntax' does not conform to the 'Sendable' protocol
 52 | /// Each node has accessors for its known children, and allows efficient
 53 | /// iteration over the children through its `children` property.
 54 | public struct Syntax: SyntaxProtocol, SyntaxHashable {
    |               `- note: struct 'Syntax' does not conform to the 'Sendable' protocol
 55 |   let data: SyntaxData
 56 |
/host/spi-builder-workspace/Sources/SwiftOperators/OperatorError.swift:30:8: warning: associated value 'incomparableOperators(leftOperator:leftPrecedenceGroup:rightOperator:rightPrecedenceGroup:)' of 'Sendable'-conforming enum 'OperatorError' has non-sendable type 'ExprSyntax'; this is an error in the Swift 6 language mode
28 |
29 |   /// No associativity relationship between operators.
30 |   case incomparableOperators(
   |        `- warning: associated value 'incomparableOperators(leftOperator:leftPrecedenceGroup:rightOperator:rightPrecedenceGroup:)' of 'Sendable'-conforming enum 'OperatorError' has non-sendable type 'ExprSyntax'; this is an error in the Swift 6 language mode
31 |     leftOperator: ExprSyntax,
32 |     leftPrecedenceGroup: PrecedenceGroupName,
/host/spi-builder-workspace/Sources/SwiftSyntax/generated/SyntaxBaseNodes.swift:173:15: note: struct 'ExprSyntax' does not conform to the 'Sendable' protocol
171 | }
172 |
173 | public struct ExprSyntax: ExprSyntaxProtocol, SyntaxHashable {
    |               `- note: struct 'ExprSyntax' does not conform to the 'Sendable' protocol
174 |   public let _syntaxNode: Syntax
175 |
/host/spi-builder-workspace/Sources/SwiftOperators/OperatorError.swift:30:8: warning: associated value 'incomparableOperators(leftOperator:leftPrecedenceGroup:rightOperator:rightPrecedenceGroup:)' of 'Sendable'-conforming enum 'OperatorError' has non-sendable type 'ExprSyntax'; this is an error in the Swift 6 language mode
28 |
29 |   /// No associativity relationship between operators.
30 |   case incomparableOperators(
   |        `- warning: associated value 'incomparableOperators(leftOperator:leftPrecedenceGroup:rightOperator:rightPrecedenceGroup:)' of 'Sendable'-conforming enum 'OperatorError' has non-sendable type 'ExprSyntax'; this is an error in the Swift 6 language mode
31 |     leftOperator: ExprSyntax,
32 |     leftPrecedenceGroup: PrecedenceGroupName,
/host/spi-builder-workspace/Sources/SwiftSyntax/generated/SyntaxBaseNodes.swift:173:15: note: struct 'ExprSyntax' does not conform to the 'Sendable' protocol
171 | }
172 |
173 | public struct ExprSyntax: ExprSyntaxProtocol, SyntaxHashable {
    |               `- note: struct 'ExprSyntax' does not conform to the 'Sendable' protocol
174 |   public let _syntaxNode: Syntax
175 |
[206/231] Compiling SwiftOperators OperatorTable+Defaults.swift
/host/spi-builder-workspace/Sources/SwiftOperators/OperatorError.swift:18:8: warning: associated value 'groupAlreadyExists(existing:new:)' of 'Sendable'-conforming enum 'OperatorError' has non-sendable type 'PrecedenceGroup'; this is an error in the Swift 6 language mode
16 |   /// Error produced when a given precedence group already exists in the
17 |   /// precedence graph.
18 |   case groupAlreadyExists(existing: PrecedenceGroup, new: PrecedenceGroup)
   |        `- warning: associated value 'groupAlreadyExists(existing:new:)' of 'Sendable'-conforming enum 'OperatorError' has non-sendable type 'PrecedenceGroup'; this is an error in the Swift 6 language mode
19 |
20 |   /// The named precedence group is missing from the precedence graph.
/host/spi-builder-workspace/Sources/SwiftOperators/PrecedenceGroup.swift:96:15: note: consider making struct 'PrecedenceGroup' conform to the 'Sendable' protocol
 94 | ///
 95 | ///     infix operator *: MultiplicationPrecedence
 96 | public struct PrecedenceGroup {
    |               `- note: consider making struct 'PrecedenceGroup' conform to the 'Sendable' protocol
 97 |   /// The name of the group, which must be unique.
 98 |   public var name: PrecedenceGroupName
/host/spi-builder-workspace/Sources/SwiftOperators/OperatorError.swift:18:8: warning: associated value 'groupAlreadyExists(existing:new:)' of 'Sendable'-conforming enum 'OperatorError' has non-sendable type 'PrecedenceGroup'; this is an error in the Swift 6 language mode
16 |   /// Error produced when a given precedence group already exists in the
17 |   /// precedence graph.
18 |   case groupAlreadyExists(existing: PrecedenceGroup, new: PrecedenceGroup)
   |        `- warning: associated value 'groupAlreadyExists(existing:new:)' of 'Sendable'-conforming enum 'OperatorError' has non-sendable type 'PrecedenceGroup'; this is an error in the Swift 6 language mode
19 |
20 |   /// The named precedence group is missing from the precedence graph.
/host/spi-builder-workspace/Sources/SwiftOperators/PrecedenceGroup.swift:96:15: note: consider making struct 'PrecedenceGroup' conform to the 'Sendable' protocol
 94 | ///
 95 | ///     infix operator *: MultiplicationPrecedence
 96 | public struct PrecedenceGroup {
    |               `- note: consider making struct 'PrecedenceGroup' conform to the 'Sendable' protocol
 97 |   /// The name of the group, which must be unique.
 98 |   public var name: PrecedenceGroupName
/host/spi-builder-workspace/Sources/SwiftOperators/OperatorError.swift:21:8: warning: associated value 'missingGroup(_:referencedFrom:)' of 'Sendable'-conforming enum 'OperatorError' has non-sendable type 'Syntax'; this is an error in the Swift 6 language mode
19 |
20 |   /// The named precedence group is missing from the precedence graph.
21 |   case missingGroup(PrecedenceGroupName, referencedFrom: Syntax)
   |        `- warning: associated value 'missingGroup(_:referencedFrom:)' of 'Sendable'-conforming enum 'OperatorError' has non-sendable type 'Syntax'; this is an error in the Swift 6 language mode
22 |
23 |   /// Error produced when a given operator already exists.
/host/spi-builder-workspace/Sources/SwiftSyntax/Syntax.swift:54:15: note: struct 'Syntax' does not conform to the 'Sendable' protocol
 52 | /// Each node has accessors for its known children, and allows efficient
 53 | /// iteration over the children through its `children` property.
 54 | public struct Syntax: SyntaxProtocol, SyntaxHashable {
    |               `- note: struct 'Syntax' does not conform to the 'Sendable' protocol
 55 |   let data: SyntaxData
 56 |
/host/spi-builder-workspace/Sources/SwiftOperators/OperatorError.swift:12:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftSyntax'
10 | //
11 | //===----------------------------------------------------------------------===//
12 | import SwiftSyntax
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftSyntax'
13 |
14 | /// Describes errors that can occur when working with user-defined operators.
/host/spi-builder-workspace/Sources/SwiftOperators/OperatorError.swift:24:8: warning: associated value 'operatorAlreadyExists(existing:new:)' of 'Sendable'-conforming enum 'OperatorError' has non-sendable type 'Operator'; this is an error in the Swift 6 language mode
22 |
23 |   /// Error produced when a given operator already exists.
24 |   case operatorAlreadyExists(existing: Operator, new: Operator)
   |        `- warning: associated value 'operatorAlreadyExists(existing:new:)' of 'Sendable'-conforming enum 'OperatorError' has non-sendable type 'Operator'; this is an error in the Swift 6 language mode
25 |
26 |   /// The named operator is missing from the precedence graph.
/host/spi-builder-workspace/Sources/SwiftOperators/Operator.swift:34:15: note: consider making struct 'Operator' conform to the 'Sendable' protocol
32 |
33 | /// Describes an operator.
34 | public struct Operator {
   |               `- note: consider making struct 'Operator' conform to the 'Sendable' protocol
35 |   public let kind: OperatorKind
36 |   public let name: OperatorName
/host/spi-builder-workspace/Sources/SwiftOperators/OperatorError.swift:24:8: warning: associated value 'operatorAlreadyExists(existing:new:)' of 'Sendable'-conforming enum 'OperatorError' has non-sendable type 'Operator'; this is an error in the Swift 6 language mode
22 |
23 |   /// Error produced when a given operator already exists.
24 |   case operatorAlreadyExists(existing: Operator, new: Operator)
   |        `- warning: associated value 'operatorAlreadyExists(existing:new:)' of 'Sendable'-conforming enum 'OperatorError' has non-sendable type 'Operator'; this is an error in the Swift 6 language mode
25 |
26 |   /// The named operator is missing from the precedence graph.
/host/spi-builder-workspace/Sources/SwiftOperators/Operator.swift:34:15: note: consider making struct 'Operator' conform to the 'Sendable' protocol
32 |
33 | /// Describes an operator.
34 | public struct Operator {
   |               `- note: consider making struct 'Operator' conform to the 'Sendable' protocol
35 |   public let kind: OperatorKind
36 |   public let name: OperatorName
/host/spi-builder-workspace/Sources/SwiftOperators/OperatorError.swift:27:8: warning: associated value 'missingOperator(_:referencedFrom:)' of 'Sendable'-conforming enum 'OperatorError' has non-sendable type 'Syntax'; this is an error in the Swift 6 language mode
25 |
26 |   /// The named operator is missing from the precedence graph.
27 |   case missingOperator(OperatorName, referencedFrom: Syntax)
   |        `- warning: associated value 'missingOperator(_:referencedFrom:)' of 'Sendable'-conforming enum 'OperatorError' has non-sendable type 'Syntax'; this is an error in the Swift 6 language mode
28 |
29 |   /// No associativity relationship between operators.
/host/spi-builder-workspace/Sources/SwiftSyntax/Syntax.swift:54:15: note: struct 'Syntax' does not conform to the 'Sendable' protocol
 52 | /// Each node has accessors for its known children, and allows efficient
 53 | /// iteration over the children through its `children` property.
 54 | public struct Syntax: SyntaxProtocol, SyntaxHashable {
    |               `- note: struct 'Syntax' does not conform to the 'Sendable' protocol
 55 |   let data: SyntaxData
 56 |
/host/spi-builder-workspace/Sources/SwiftOperators/OperatorError.swift:30:8: warning: associated value 'incomparableOperators(leftOperator:leftPrecedenceGroup:rightOperator:rightPrecedenceGroup:)' of 'Sendable'-conforming enum 'OperatorError' has non-sendable type 'ExprSyntax'; this is an error in the Swift 6 language mode
28 |
29 |   /// No associativity relationship between operators.
30 |   case incomparableOperators(
   |        `- warning: associated value 'incomparableOperators(leftOperator:leftPrecedenceGroup:rightOperator:rightPrecedenceGroup:)' of 'Sendable'-conforming enum 'OperatorError' has non-sendable type 'ExprSyntax'; this is an error in the Swift 6 language mode
31 |     leftOperator: ExprSyntax,
32 |     leftPrecedenceGroup: PrecedenceGroupName,
/host/spi-builder-workspace/Sources/SwiftSyntax/generated/SyntaxBaseNodes.swift:173:15: note: struct 'ExprSyntax' does not conform to the 'Sendable' protocol
171 | }
172 |
173 | public struct ExprSyntax: ExprSyntaxProtocol, SyntaxHashable {
    |               `- note: struct 'ExprSyntax' does not conform to the 'Sendable' protocol
174 |   public let _syntaxNode: Syntax
175 |
/host/spi-builder-workspace/Sources/SwiftOperators/OperatorError.swift:30:8: warning: associated value 'incomparableOperators(leftOperator:leftPrecedenceGroup:rightOperator:rightPrecedenceGroup:)' of 'Sendable'-conforming enum 'OperatorError' has non-sendable type 'ExprSyntax'; this is an error in the Swift 6 language mode
28 |
29 |   /// No associativity relationship between operators.
30 |   case incomparableOperators(
   |        `- warning: associated value 'incomparableOperators(leftOperator:leftPrecedenceGroup:rightOperator:rightPrecedenceGroup:)' of 'Sendable'-conforming enum 'OperatorError' has non-sendable type 'ExprSyntax'; this is an error in the Swift 6 language mode
31 |     leftOperator: ExprSyntax,
32 |     leftPrecedenceGroup: PrecedenceGroupName,
/host/spi-builder-workspace/Sources/SwiftSyntax/generated/SyntaxBaseNodes.swift:173:15: note: struct 'ExprSyntax' does not conform to the 'Sendable' protocol
171 | }
172 |
173 | public struct ExprSyntax: ExprSyntaxProtocol, SyntaxHashable {
    |               `- note: struct 'ExprSyntax' does not conform to the 'Sendable' protocol
174 |   public let _syntaxNode: Syntax
175 |
[207/231] Compiling SwiftOperators Operator.swift
[208/231] Compiling SwiftOperators OperatorError+Diagnostics.swift
[211/232] Wrapping AST for SwiftOperators for debugging
[213/232] Compiling SwiftParserDiagnostics SyntaxExtensions.swift
[214/232] Compiling SwiftParserDiagnostics Utils.swift
[215/232] Compiling SwiftParserDiagnostics ChildNameForDiagnostics.swift
[216/232] Compiling lit_test_helper ClassifiedSyntaxTreePrinter.swift
[217/232] Compiling lit_test_helper CommandLineArguments.swift
[218/232] Compiling lit_test_helper main.swift
/host/spi-builder-workspace/Sources/lit-test-helper/main.swift:381:8: warning: associated value 'reparsedRegionsVerificationFailed' of 'Sendable'-conforming enum 'TestingError' has non-sendable type 'ByteSourceRange'; this is an error in the Swift 6 language mode
379 |
380 | enum TestingError: Error, CustomStringConvertible {
381 |   case reparsedRegionsVerificationFailed(ByteSourceRange)
    |        `- warning: associated value 'reparsedRegionsVerificationFailed' of 'Sendable'-conforming enum 'TestingError' has non-sendable type 'ByteSourceRange'; this is an error in the Swift 6 language mode
382 |   case classificationVerificationFailed(String, String)
383 |   case readingSourceFileFailed(URL)
/host/spi-builder-workspace/Sources/SwiftSyntax/Utils.swift:13:15: note: struct 'ByteSourceRange' does not conform to the 'Sendable' protocol
 11 | //===----------------------------------------------------------------------===//
 12 |
 13 | public struct ByteSourceRange: Equatable {
    |               `- note: struct 'ByteSourceRange' does not conform to the 'Sendable' protocol
 14 |   public var offset: Int
 15 |   public var length: Int
/host/spi-builder-workspace/Sources/lit-test-helper/main.swift:13:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftSyntax'
 11 | //===----------------------------------------------------------------------===//
 12 |
 13 | import SwiftSyntax
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftSyntax'
 14 | import SwiftParser
 15 | import Foundation
[219/233] Wrapping AST for lit-test-helper for debugging
[220/233] Write Objects.LinkFileList
[222/233] Compiling SwiftParserDiagnostics MissingNodesError.swift
[223/233] Compiling SwiftParserDiagnostics MissingTokenError.swift
[226/233] Compiling SwiftParserDiagnostics DiagnosticExtensions.swift
[227/233] Compiling SwiftParserDiagnostics LexerDiagnosticMessages.swift
[228/233] Emitting module SwiftParserDiagnostics
[229/245] Wrapping AST for SwiftParserDiagnostics for debugging
[230/248] Linking lit-test-helper
[232/248] Compiling SwiftSyntaxBuilder WithTrailingCommaSyntax+EnsuringTrailingComma.swift
[233/249] Compiling SwiftSyntaxBuilder SyntaxExpressibleByStringInterpolationConformances.swift
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/SyntaxExpressibleByStringInterpolationConformances.swift:29:1: warning: extension declares a conformance of imported type 'AccessorDeclSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
27 | }
28 |
29 | extension AccessorDeclSyntax: SyntaxExpressibleByStringInterpolation {}
   | |- warning: extension declares a conformance of imported type 'AccessorDeclSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
30 |
31 | extension AttributeSyntax: SyntaxExpressibleByStringInterpolation {}
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/SyntaxExpressibleByStringInterpolationConformances.swift:31:1: warning: extension declares a conformance of imported type 'AttributeSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
29 | extension AccessorDeclSyntax: SyntaxExpressibleByStringInterpolation {}
30 |
31 | extension AttributeSyntax: SyntaxExpressibleByStringInterpolation {}
   | |- warning: extension declares a conformance of imported type 'AttributeSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
32 |
33 | extension CatchClauseSyntax: SyntaxExpressibleByStringInterpolation {}
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/SyntaxExpressibleByStringInterpolationConformances.swift:33:1: warning: extension declares a conformance of imported type 'CatchClauseSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
31 | extension AttributeSyntax: SyntaxExpressibleByStringInterpolation {}
32 |
33 | extension CatchClauseSyntax: SyntaxExpressibleByStringInterpolation {}
   | |- warning: extension declares a conformance of imported type 'CatchClauseSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
34 |
35 | extension ClosureParameterSyntax: SyntaxExpressibleByStringInterpolation {}
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/SyntaxExpressibleByStringInterpolationConformances.swift:35:1: warning: extension declares a conformance of imported type 'ClosureParameterSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
33 | extension CatchClauseSyntax: SyntaxExpressibleByStringInterpolation {}
34 |
35 | extension ClosureParameterSyntax: SyntaxExpressibleByStringInterpolation {}
   | |- warning: extension declares a conformance of imported type 'ClosureParameterSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
36 |
37 | extension DeclSyntax: SyntaxExpressibleByStringInterpolation {}
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/SyntaxExpressibleByStringInterpolationConformances.swift:37:1: warning: extension declares a conformance of imported type 'DeclSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
35 | extension ClosureParameterSyntax: SyntaxExpressibleByStringInterpolation {}
36 |
37 | extension DeclSyntax: SyntaxExpressibleByStringInterpolation {}
   | |- warning: extension declares a conformance of imported type 'DeclSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
38 |
39 | extension EnumCaseParameterSyntax: SyntaxExpressibleByStringInterpolation {}
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/SyntaxExpressibleByStringInterpolationConformances.swift:39:1: warning: extension declares a conformance of imported type 'EnumCaseParameterSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
37 | extension DeclSyntax: SyntaxExpressibleByStringInterpolation {}
38 |
39 | extension EnumCaseParameterSyntax: SyntaxExpressibleByStringInterpolation {}
   | |- warning: extension declares a conformance of imported type 'EnumCaseParameterSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
40 |
41 | extension ExprSyntax: SyntaxExpressibleByStringInterpolation {}
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/SyntaxExpressibleByStringInterpolationConformances.swift:41:1: warning: extension declares a conformance of imported type 'ExprSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
39 | extension EnumCaseParameterSyntax: SyntaxExpressibleByStringInterpolation {}
40 |
41 | extension ExprSyntax: SyntaxExpressibleByStringInterpolation {}
   | |- warning: extension declares a conformance of imported type 'ExprSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
42 |
43 | extension FunctionParameterSyntax: SyntaxExpressibleByStringInterpolation {}
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/SyntaxExpressibleByStringInterpolationConformances.swift:43:1: warning: extension declares a conformance of imported type 'FunctionParameterSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
41 | extension ExprSyntax: SyntaxExpressibleByStringInterpolation {}
42 |
43 | extension FunctionParameterSyntax: SyntaxExpressibleByStringInterpolation {}
   | |- warning: extension declares a conformance of imported type 'FunctionParameterSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
44 |
45 | extension GenericParameterClauseSyntax: SyntaxExpressibleByStringInterpolation {}
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/SyntaxExpressibleByStringInterpolationConformances.swift:45:1: warning: extension declares a conformance of imported type 'GenericParameterClauseSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
43 | extension FunctionParameterSyntax: SyntaxExpressibleByStringInterpolation {}
44 |
45 | extension GenericParameterClauseSyntax: SyntaxExpressibleByStringInterpolation {}
   | |- warning: extension declares a conformance of imported type 'GenericParameterClauseSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
46 |
47 | extension MemberDeclBlockSyntax: SyntaxExpressibleByStringInterpolation {}
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/SyntaxExpressibleByStringInterpolationConformances.swift:47:1: warning: extension declares a conformance of imported type 'MemberDeclBlockSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
45 | extension GenericParameterClauseSyntax: SyntaxExpressibleByStringInterpolation {}
46 |
47 | extension MemberDeclBlockSyntax: SyntaxExpressibleByStringInterpolation {}
   | |- warning: extension declares a conformance of imported type 'MemberDeclBlockSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
48 |
49 | extension PatternSyntax: SyntaxExpressibleByStringInterpolation {}
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/SyntaxExpressibleByStringInterpolationConformances.swift:49:1: warning: extension declares a conformance of imported type 'PatternSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
47 | extension MemberDeclBlockSyntax: SyntaxExpressibleByStringInterpolation {}
48 |
49 | extension PatternSyntax: SyntaxExpressibleByStringInterpolation {}
   | |- warning: extension declares a conformance of imported type 'PatternSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
50 |
51 | extension SourceFileSyntax: SyntaxExpressibleByStringInterpolation {}
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/SyntaxExpressibleByStringInterpolationConformances.swift:51:1: warning: extension declares a conformance of imported type 'SourceFileSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
49 | extension PatternSyntax: SyntaxExpressibleByStringInterpolation {}
50 |
51 | extension SourceFileSyntax: SyntaxExpressibleByStringInterpolation {}
   | |- warning: extension declares a conformance of imported type 'SourceFileSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
52 |
53 | extension StmtSyntax: SyntaxExpressibleByStringInterpolation {}
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/SyntaxExpressibleByStringInterpolationConformances.swift:53:1: warning: extension declares a conformance of imported type 'StmtSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
51 | extension SourceFileSyntax: SyntaxExpressibleByStringInterpolation {}
52 |
53 | extension StmtSyntax: SyntaxExpressibleByStringInterpolation {}
   | |- warning: extension declares a conformance of imported type 'StmtSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
54 |
55 | extension SwitchCaseSyntax: SyntaxExpressibleByStringInterpolation {}
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/SyntaxExpressibleByStringInterpolationConformances.swift:55:1: warning: extension declares a conformance of imported type 'SwitchCaseSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
53 | extension StmtSyntax: SyntaxExpressibleByStringInterpolation {}
54 |
55 | extension SwitchCaseSyntax: SyntaxExpressibleByStringInterpolation {}
   | |- warning: extension declares a conformance of imported type 'SwitchCaseSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
56 |
57 | extension TypeSyntax: SyntaxExpressibleByStringInterpolation {}
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/SyntaxExpressibleByStringInterpolationConformances.swift:57:1: warning: extension declares a conformance of imported type 'TypeSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
55 | extension SwitchCaseSyntax: SyntaxExpressibleByStringInterpolation {}
56 |
57 | extension TypeSyntax: SyntaxExpressibleByStringInterpolation {}
   | |- warning: extension declares a conformance of imported type 'TypeSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
58 |
59 | // TODO: This should be inlined in SyntaxParseable.init(stringInterpolation:),
[234/249] Compiling SwiftSyntaxBuilder SyntaxNodeWithBody.swift
[235/249] Compiling SwiftSyntaxBuilder ValidatingSyntaxNodes.swift
error: emit-module command failed with exit code 1 (use -v to see invocation)
[236/249] Compiling swift_parser_cli TerminalUtils.swift
/host/spi-builder-workspace/Sources/swift-parser-cli/TerminalUtils.swift:18:8: error: no such module 'Darwin.C'
16 | import CRT
17 | #else
18 | import Darwin.C
   |        `- error: no such module 'Darwin.C'
19 | #endif
20 |
[237/249] Compiling swift_parser_cli swift-parser-cli.swift
/host/spi-builder-workspace/Sources/swift-parser-cli/TerminalUtils.swift:18:8: error: no such module 'Darwin.C'
16 | import CRT
17 | #else
18 | import Darwin.C
   |        `- error: no such module 'Darwin.C'
19 | #endif
20 |
[238/249] Emitting module swift_parser_cli
/host/spi-builder-workspace/Sources/swift-parser-cli/TerminalUtils.swift:18:8: error: no such module 'Darwin.C'
16 | import CRT
17 | #else
18 | import Darwin.C
   |        `- error: no such module 'Darwin.C'
19 | #endif
20 |
[239/249] Compiling SwiftSyntaxBuilder ConvenienceInitializers.swift
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/ConvenienceInitializers.swift:46:1: warning: extension declares a conformance of imported type 'BooleanLiteralExprSyntax' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
 44 | // MARK: - BooleanLiteralExpr
 45 |
 46 | extension BooleanLiteralExprSyntax: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'BooleanLiteralExprSyntax' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 47 |   public init(_ value: Bool) {
 48 |     self.init(booleanLiteral: value ? .keyword(.true) : .keyword(.false))
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/ConvenienceInitializers.swift:131:1: warning: extension declares a conformance of imported type 'FloatLiteralExprSyntax' to imported protocol 'ExpressibleByFloatLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
129 | // MARK: - FloatLiteralExprSyntax
130 |
131 | extension FloatLiteralExprSyntax: ExpressibleByFloatLiteral {
    | |- warning: extension declares a conformance of imported type 'FloatLiteralExprSyntax' to imported protocol 'ExpressibleByFloatLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
132 |   public init(_ value: Float) {
133 |     self.init(floatingDigits: .floatingLiteral(String(value)))
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/ConvenienceInitializers.swift:168:1: warning: extension declares a conformance of imported type 'IntegerLiteralExprSyntax' to imported protocol 'ExpressibleByIntegerLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
166 | // MARK: - IntegerLiteralExpr
167 |
168 | extension IntegerLiteralExprSyntax: ExpressibleByIntegerLiteral {
    | |- warning: extension declares a conformance of imported type 'IntegerLiteralExprSyntax' to imported protocol 'ExpressibleByIntegerLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
169 |   public init(_ value: Int) {
170 |     self.init(digits: .integerLiteral(String(value)))
[240/249] Compiling SwiftSyntaxBuilder Indenter.swift
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/ConvenienceInitializers.swift:46:1: warning: extension declares a conformance of imported type 'BooleanLiteralExprSyntax' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
 44 | // MARK: - BooleanLiteralExpr
 45 |
 46 | extension BooleanLiteralExprSyntax: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'BooleanLiteralExprSyntax' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 47 |   public init(_ value: Bool) {
 48 |     self.init(booleanLiteral: value ? .keyword(.true) : .keyword(.false))
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/ConvenienceInitializers.swift:131:1: warning: extension declares a conformance of imported type 'FloatLiteralExprSyntax' to imported protocol 'ExpressibleByFloatLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
129 | // MARK: - FloatLiteralExprSyntax
130 |
131 | extension FloatLiteralExprSyntax: ExpressibleByFloatLiteral {
    | |- warning: extension declares a conformance of imported type 'FloatLiteralExprSyntax' to imported protocol 'ExpressibleByFloatLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
132 |   public init(_ value: Float) {
133 |     self.init(floatingDigits: .floatingLiteral(String(value)))
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/ConvenienceInitializers.swift:168:1: warning: extension declares a conformance of imported type 'IntegerLiteralExprSyntax' to imported protocol 'ExpressibleByIntegerLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
166 | // MARK: - IntegerLiteralExpr
167 |
168 | extension IntegerLiteralExprSyntax: ExpressibleByIntegerLiteral {
    | |- warning: extension declares a conformance of imported type 'IntegerLiteralExprSyntax' to imported protocol 'ExpressibleByIntegerLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
169 |   public init(_ value: Int) {
170 |     self.init(digits: .integerLiteral(String(value)))
[241/249] Compiling SwiftSyntaxBuilder ResultBuilderExtensions.swift
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/Syntax+StringInterpolation.swift:140:8: warning: associated value 'diagnostics(_:tree:)' of 'Sendable'-conforming enum 'SyntaxStringInterpolationError' has non-sendable type 'Diagnostic'; this is an error in the Swift 6 language mode
138 | enum SyntaxStringInterpolationError: Error, CustomStringConvertible {
139 |   case producedInvalidNodeType(expectedType: SyntaxProtocol.Type, actualType: SyntaxProtocol.Type)
140 |   case diagnostics([Diagnostic], tree: Syntax)
    |        `- warning: associated value 'diagnostics(_:tree:)' of 'Sendable'-conforming enum 'SyntaxStringInterpolationError' has non-sendable type 'Diagnostic'; this is an error in the Swift 6 language mode
141 |
142 |   static func producedInvalidNodeType<S: SyntaxProtocol>(expectedType: SyntaxProtocol.Type, actualNode: S) -> Self {
/host/spi-builder-workspace/Sources/SwiftDiagnostics/Diagnostic.swift:15:15: note: struct 'Diagnostic' does not conform to the 'Sendable' protocol
13 | import SwiftSyntax
14 |
15 | public struct Diagnostic: CustomDebugStringConvertible {
   |               `- note: struct 'Diagnostic' does not conform to the 'Sendable' protocol
16 |   /// The message that should be displayed to the user
17 |   public let diagMessage: DiagnosticMessage
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/Syntax+StringInterpolation.swift:14:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftDiagnostics'
 12 |
 13 | import SwiftBasicFormat
 14 | import SwiftDiagnostics
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftDiagnostics'
 15 | @_spi(RawSyntax) import SwiftSyntax
 16 | @_spi(RawSyntax) import SwiftParser
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/Syntax+StringInterpolation.swift:140:8: warning: associated value 'diagnostics(_:tree:)' of 'Sendable'-conforming enum 'SyntaxStringInterpolationError' has non-sendable type 'Syntax'; this is an error in the Swift 6 language mode
138 | enum SyntaxStringInterpolationError: Error, CustomStringConvertible {
139 |   case producedInvalidNodeType(expectedType: SyntaxProtocol.Type, actualType: SyntaxProtocol.Type)
140 |   case diagnostics([Diagnostic], tree: Syntax)
    |        `- warning: associated value 'diagnostics(_:tree:)' of 'Sendable'-conforming enum 'SyntaxStringInterpolationError' has non-sendable type 'Syntax'; this is an error in the Swift 6 language mode
141 |
142 |   static func producedInvalidNodeType<S: SyntaxProtocol>(expectedType: SyntaxProtocol.Type, actualNode: S) -> Self {
/host/spi-builder-workspace/Sources/SwiftSyntax/Syntax.swift:54:15: note: struct 'Syntax' does not conform to the 'Sendable' protocol
 52 | /// Each node has accessors for its known children, and allows efficient
 53 | /// iteration over the children through its `children` property.
 54 | public struct Syntax: SyntaxProtocol, SyntaxHashable {
    |               `- note: struct 'Syntax' does not conform to the 'Sendable' protocol
 55 |   let data: SyntaxData
 56 |
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/Syntax+StringInterpolation.swift:15:18: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftSyntax'
 13 | import SwiftBasicFormat
 14 | import SwiftDiagnostics
 15 | @_spi(RawSyntax) import SwiftSyntax
    |                  `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftSyntax'
 16 | @_spi(RawSyntax) import SwiftParser
 17 |
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/Syntax+StringInterpolation.swift:412:1: warning: extension declares a conformance of imported type 'TokenSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
410 | }
411 |
412 | extension TokenSyntax: SyntaxExpressibleByStringInterpolation {
    | |- warning: extension declares a conformance of imported type 'TokenSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
413 |   public init(stringInterpolation: SyntaxStringInterpolation) {
414 |     let string = stringInterpolation.sourceText.withUnsafeBufferPointer { buf in
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/Syntax+StringInterpolation.swift:443:1: warning: extension declares a conformance of imported type 'Trivia' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
441 | }
442 |
443 | extension Trivia: ExpressibleByStringInterpolation {
    | |- warning: extension declares a conformance of imported type 'Trivia' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
444 |   public init(stringInterpolation: String.StringInterpolation) {
445 |     var text = String(stringInterpolation: stringInterpolation)
[242/249] Compiling SwiftSyntaxBuilder Syntax+StringInterpolation.swift
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/Syntax+StringInterpolation.swift:140:8: warning: associated value 'diagnostics(_:tree:)' of 'Sendable'-conforming enum 'SyntaxStringInterpolationError' has non-sendable type 'Diagnostic'; this is an error in the Swift 6 language mode
138 | enum SyntaxStringInterpolationError: Error, CustomStringConvertible {
139 |   case producedInvalidNodeType(expectedType: SyntaxProtocol.Type, actualType: SyntaxProtocol.Type)
140 |   case diagnostics([Diagnostic], tree: Syntax)
    |        `- warning: associated value 'diagnostics(_:tree:)' of 'Sendable'-conforming enum 'SyntaxStringInterpolationError' has non-sendable type 'Diagnostic'; this is an error in the Swift 6 language mode
141 |
142 |   static func producedInvalidNodeType<S: SyntaxProtocol>(expectedType: SyntaxProtocol.Type, actualNode: S) -> Self {
/host/spi-builder-workspace/Sources/SwiftDiagnostics/Diagnostic.swift:15:15: note: struct 'Diagnostic' does not conform to the 'Sendable' protocol
13 | import SwiftSyntax
14 |
15 | public struct Diagnostic: CustomDebugStringConvertible {
   |               `- note: struct 'Diagnostic' does not conform to the 'Sendable' protocol
16 |   /// The message that should be displayed to the user
17 |   public let diagMessage: DiagnosticMessage
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/Syntax+StringInterpolation.swift:14:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftDiagnostics'
 12 |
 13 | import SwiftBasicFormat
 14 | import SwiftDiagnostics
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftDiagnostics'
 15 | @_spi(RawSyntax) import SwiftSyntax
 16 | @_spi(RawSyntax) import SwiftParser
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/Syntax+StringInterpolation.swift:140:8: warning: associated value 'diagnostics(_:tree:)' of 'Sendable'-conforming enum 'SyntaxStringInterpolationError' has non-sendable type 'Syntax'; this is an error in the Swift 6 language mode
138 | enum SyntaxStringInterpolationError: Error, CustomStringConvertible {
139 |   case producedInvalidNodeType(expectedType: SyntaxProtocol.Type, actualType: SyntaxProtocol.Type)
140 |   case diagnostics([Diagnostic], tree: Syntax)
    |        `- warning: associated value 'diagnostics(_:tree:)' of 'Sendable'-conforming enum 'SyntaxStringInterpolationError' has non-sendable type 'Syntax'; this is an error in the Swift 6 language mode
141 |
142 |   static func producedInvalidNodeType<S: SyntaxProtocol>(expectedType: SyntaxProtocol.Type, actualNode: S) -> Self {
/host/spi-builder-workspace/Sources/SwiftSyntax/Syntax.swift:54:15: note: struct 'Syntax' does not conform to the 'Sendable' protocol
 52 | /// Each node has accessors for its known children, and allows efficient
 53 | /// iteration over the children through its `children` property.
 54 | public struct Syntax: SyntaxProtocol, SyntaxHashable {
    |               `- note: struct 'Syntax' does not conform to the 'Sendable' protocol
 55 |   let data: SyntaxData
 56 |
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/Syntax+StringInterpolation.swift:15:18: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftSyntax'
 13 | import SwiftBasicFormat
 14 | import SwiftDiagnostics
 15 | @_spi(RawSyntax) import SwiftSyntax
    |                  `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftSyntax'
 16 | @_spi(RawSyntax) import SwiftParser
 17 |
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/Syntax+StringInterpolation.swift:412:1: warning: extension declares a conformance of imported type 'TokenSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
410 | }
411 |
412 | extension TokenSyntax: SyntaxExpressibleByStringInterpolation {
    | |- warning: extension declares a conformance of imported type 'TokenSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
413 |   public init(stringInterpolation: SyntaxStringInterpolation) {
414 |     let string = stringInterpolation.sourceText.withUnsafeBufferPointer { buf in
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/Syntax+StringInterpolation.swift:443:1: warning: extension declares a conformance of imported type 'Trivia' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
441 | }
442 |
443 | extension Trivia: ExpressibleByStringInterpolation {
    | |- warning: extension declares a conformance of imported type 'Trivia' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
444 |   public init(stringInterpolation: String.StringInterpolation) {
445 |     var text = String(stringInterpolation: stringInterpolation)
[243/249] Emitting module SwiftSyntaxBuilder
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/ConvenienceInitializers.swift:46:1: warning: extension declares a conformance of imported type 'BooleanLiteralExprSyntax' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
 44 | // MARK: - BooleanLiteralExpr
 45 |
 46 | extension BooleanLiteralExprSyntax: ExpressibleByBooleanLiteral {
    | |- warning: extension declares a conformance of imported type 'BooleanLiteralExprSyntax' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 47 |   public init(_ value: Bool) {
 48 |     self.init(booleanLiteral: value ? .keyword(.true) : .keyword(.false))
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/ConvenienceInitializers.swift:131:1: warning: extension declares a conformance of imported type 'FloatLiteralExprSyntax' to imported protocol 'ExpressibleByFloatLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
129 | // MARK: - FloatLiteralExprSyntax
130 |
131 | extension FloatLiteralExprSyntax: ExpressibleByFloatLiteral {
    | |- warning: extension declares a conformance of imported type 'FloatLiteralExprSyntax' to imported protocol 'ExpressibleByFloatLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
132 |   public init(_ value: Float) {
133 |     self.init(floatingDigits: .floatingLiteral(String(value)))
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/ConvenienceInitializers.swift:168:1: warning: extension declares a conformance of imported type 'IntegerLiteralExprSyntax' to imported protocol 'ExpressibleByIntegerLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
166 | // MARK: - IntegerLiteralExpr
167 |
168 | extension IntegerLiteralExprSyntax: ExpressibleByIntegerLiteral {
    | |- warning: extension declares a conformance of imported type 'IntegerLiteralExprSyntax' to imported protocol 'ExpressibleByIntegerLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
169 |   public init(_ value: Int) {
170 |     self.init(digits: .integerLiteral(String(value)))
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/Syntax+StringInterpolation.swift:140:8: warning: associated value 'diagnostics(_:tree:)' of 'Sendable'-conforming enum 'SyntaxStringInterpolationError' has non-sendable type 'Diagnostic'; this is an error in the Swift 6 language mode
138 | enum SyntaxStringInterpolationError: Error, CustomStringConvertible {
139 |   case producedInvalidNodeType(expectedType: SyntaxProtocol.Type, actualType: SyntaxProtocol.Type)
140 |   case diagnostics([Diagnostic], tree: Syntax)
    |        `- warning: associated value 'diagnostics(_:tree:)' of 'Sendable'-conforming enum 'SyntaxStringInterpolationError' has non-sendable type 'Diagnostic'; this is an error in the Swift 6 language mode
141 |
142 |   static func producedInvalidNodeType<S: SyntaxProtocol>(expectedType: SyntaxProtocol.Type, actualNode: S) -> Self {
/host/spi-builder-workspace/Sources/SwiftDiagnostics/Diagnostic.swift:15:15: note: struct 'Diagnostic' does not conform to the 'Sendable' protocol
13 | import SwiftSyntax
14 |
15 | public struct Diagnostic: CustomDebugStringConvertible {
   |               `- note: struct 'Diagnostic' does not conform to the 'Sendable' protocol
16 |   /// The message that should be displayed to the user
17 |   public let diagMessage: DiagnosticMessage
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/Syntax+StringInterpolation.swift:14:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftDiagnostics'
 12 |
 13 | import SwiftBasicFormat
 14 | import SwiftDiagnostics
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftDiagnostics'
 15 | @_spi(RawSyntax) import SwiftSyntax
 16 | @_spi(RawSyntax) import SwiftParser
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/Syntax+StringInterpolation.swift:140:8: warning: associated value 'diagnostics(_:tree:)' of 'Sendable'-conforming enum 'SyntaxStringInterpolationError' has non-sendable type 'Syntax'; this is an error in the Swift 6 language mode
138 | enum SyntaxStringInterpolationError: Error, CustomStringConvertible {
139 |   case producedInvalidNodeType(expectedType: SyntaxProtocol.Type, actualType: SyntaxProtocol.Type)
140 |   case diagnostics([Diagnostic], tree: Syntax)
    |        `- warning: associated value 'diagnostics(_:tree:)' of 'Sendable'-conforming enum 'SyntaxStringInterpolationError' has non-sendable type 'Syntax'; this is an error in the Swift 6 language mode
141 |
142 |   static func producedInvalidNodeType<S: SyntaxProtocol>(expectedType: SyntaxProtocol.Type, actualNode: S) -> Self {
/host/spi-builder-workspace/Sources/SwiftSyntax/Syntax.swift:54:15: note: struct 'Syntax' does not conform to the 'Sendable' protocol
 52 | /// Each node has accessors for its known children, and allows efficient
 53 | /// iteration over the children through its `children` property.
 54 | public struct Syntax: SyntaxProtocol, SyntaxHashable {
    |               `- note: struct 'Syntax' does not conform to the 'Sendable' protocol
 55 |   let data: SyntaxData
 56 |
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/Syntax+StringInterpolation.swift:15:18: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftSyntax'
 13 | import SwiftBasicFormat
 14 | import SwiftDiagnostics
 15 | @_spi(RawSyntax) import SwiftSyntax
    |                  `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftSyntax'
 16 | @_spi(RawSyntax) import SwiftParser
 17 |
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/Syntax+StringInterpolation.swift:412:1: warning: extension declares a conformance of imported type 'TokenSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
410 | }
411 |
412 | extension TokenSyntax: SyntaxExpressibleByStringInterpolation {
    | |- warning: extension declares a conformance of imported type 'TokenSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
413 |   public init(stringInterpolation: SyntaxStringInterpolation) {
414 |     let string = stringInterpolation.sourceText.withUnsafeBufferPointer { buf in
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/Syntax+StringInterpolation.swift:443:1: warning: extension declares a conformance of imported type 'Trivia' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
441 | }
442 |
443 | extension Trivia: ExpressibleByStringInterpolation {
    | |- warning: extension declares a conformance of imported type 'Trivia' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
444 |   public init(stringInterpolation: String.StringInterpolation) {
445 |     var text = String(stringInterpolation: stringInterpolation)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:18:1: warning: extension declares a conformance of imported type 'AccessPathSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
 16 |
 17 | /// `AccessPath` represents a collection of `AccessPathComponentSyntax`
 18 | extension AccessPathSyntax: ExpressibleByArrayLiteral {
    | |- warning: extension declares a conformance of imported type 'AccessPathSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 19 |   public init(arrayLiteral elements: Element...) {
 20 |     self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:25:1: warning: extension declares a conformance of imported type 'AccessorListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
 23 |
 24 | /// `AccessorList` represents a collection of `AccessorDeclSyntax`
 25 | extension AccessorListSyntax: ExpressibleByArrayLiteral {
    | |- warning: extension declares a conformance of imported type 'AccessorListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 26 |   public init(arrayLiteral elements: Element...) {
 27 |     self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:32:1: warning: extension declares a conformance of imported type 'ArrayElementListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
 30 |
 31 | /// `ArrayElementList` represents a collection of `ArrayElementSyntax`
 32 | extension ArrayElementListSyntax: ExpressibleByArrayLiteral {
    | |- warning: extension declares a conformance of imported type 'ArrayElementListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 33 |   public init(arrayLiteral elements: Element...) {
 34 |     self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:39:1: warning: extension declares a conformance of imported type 'AttributeListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
 37 |
 38 | /// `AttributeList` represents a collection of `Syntax`
 39 | extension AttributeListSyntax: ExpressibleByArrayLiteral {
    | |- warning: extension declares a conformance of imported type 'AttributeListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 40 |   public init(arrayLiteral elements: Element...) {
 41 |     self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:46:1: warning: extension declares a conformance of imported type 'AvailabilitySpecListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
 44 |
 45 | /// `AvailabilitySpecList` represents a collection of `AvailabilityArgumentSyntax`
 46 | extension AvailabilitySpecListSyntax: ExpressibleByArrayLiteral {
    | |- warning: extension declares a conformance of imported type 'AvailabilitySpecListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 47 |   public init(arrayLiteral elements: Element...) {
 48 |     self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:53:1: warning: extension declares a conformance of imported type 'AvailabilityVersionRestrictionListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
 51 |
 52 | /// `AvailabilityVersionRestrictionList` represents a collection of `AvailabilityVersionRestrictionListEntrySyntax`
 53 | extension AvailabilityVersionRestrictionListSyntax: ExpressibleByArrayLiteral {
    | |- warning: extension declares a conformance of imported type 'AvailabilityVersionRestrictionListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 54 |   public init(arrayLiteral elements: Element...) {
 55 |     self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:60:1: warning: extension declares a conformance of imported type 'CaseItemListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
 58 |
 59 | /// `CaseItemList` represents a collection of `CaseItemSyntax`
 60 | extension CaseItemListSyntax: ExpressibleByArrayLiteral {
    | |- warning: extension declares a conformance of imported type 'CaseItemListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 61 |   public init(arrayLiteral elements: Element...) {
 62 |     self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:67:1: warning: extension declares a conformance of imported type 'CatchClauseListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
 65 |
 66 | /// `CatchClauseList` represents a collection of `CatchClauseSyntax`
 67 | extension CatchClauseListSyntax: ExpressibleByArrayLiteral {
    | |- warning: extension declares a conformance of imported type 'CatchClauseListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 68 |   public init(arrayLiteral elements: Element...) {
 69 |     self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:74:1: warning: extension declares a conformance of imported type 'CatchItemListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
 72 |
 73 | /// `CatchItemList` represents a collection of `CatchItemSyntax`
 74 | extension CatchItemListSyntax: ExpressibleByArrayLiteral {
    | |- warning: extension declares a conformance of imported type 'CatchItemListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 75 |   public init(arrayLiteral elements: Element...) {
 76 |     self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:81:1: warning: extension declares a conformance of imported type 'ClosureCaptureItemListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
 79 |
 80 | /// `ClosureCaptureItemList` represents a collection of `ClosureCaptureItemSyntax`
 81 | extension ClosureCaptureItemListSyntax: ExpressibleByArrayLiteral {
    | |- warning: extension declares a conformance of imported type 'ClosureCaptureItemListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 82 |   public init(arrayLiteral elements: Element...) {
 83 |     self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:88:1: warning: extension declares a conformance of imported type 'ClosureParamListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
 86 |
 87 | /// `ClosureParamList` represents a collection of `ClosureParamSyntax`
 88 | extension ClosureParamListSyntax: ExpressibleByArrayLiteral {
    | |- warning: extension declares a conformance of imported type 'ClosureParamListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 89 |   public init(arrayLiteral elements: Element...) {
 90 |     self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:95:1: warning: extension declares a conformance of imported type 'ClosureParameterListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
 93 |
 94 | /// `ClosureParameterList` represents a collection of `ClosureParameterSyntax`
 95 | extension ClosureParameterListSyntax: ExpressibleByArrayLiteral {
    | |- warning: extension declares a conformance of imported type 'ClosureParameterListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 96 |   public init(arrayLiteral elements: Element...) {
 97 |     self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:102:1: warning: extension declares a conformance of imported type 'CodeBlockItemListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
100 |
101 | /// `CodeBlockItemList` represents a collection of `CodeBlockItemSyntax`
102 | extension CodeBlockItemListSyntax: ExpressibleByArrayLiteral {
    | |- warning: extension declares a conformance of imported type 'CodeBlockItemListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
103 |   public init(arrayLiteral elements: Element...) {
104 |     self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:109:1: warning: extension declares a conformance of imported type 'CompositionTypeElementListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
107 |
108 | /// `CompositionTypeElementList` represents a collection of `CompositionTypeElementSyntax`
109 | extension CompositionTypeElementListSyntax: ExpressibleByArrayLiteral {
    | |- warning: extension declares a conformance of imported type 'CompositionTypeElementListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
110 |   public init(arrayLiteral elements: Element...) {
111 |     self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:116:1: warning: extension declares a conformance of imported type 'ConditionElementListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
114 |
115 | /// `ConditionElementList` represents a collection of `ConditionElementSyntax`
116 | extension ConditionElementListSyntax: ExpressibleByArrayLiteral {
    | |- warning: extension declares a conformance of imported type 'ConditionElementListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
117 |   public init(arrayLiteral elements: Element...) {
118 |     self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:123:1: warning: extension declares a conformance of imported type 'DeclNameArgumentListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
121 |
122 | /// `DeclNameArgumentList` represents a collection of `DeclNameArgumentSyntax`
123 | extension DeclNameArgumentListSyntax: ExpressibleByArrayLiteral {
    | |- warning: extension declares a conformance of imported type 'DeclNameArgumentListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
124 |   public init(arrayLiteral elements: Element...) {
125 |     self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:130:1: warning: extension declares a conformance of imported type 'DesignatedTypeListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
128 |
129 | /// `DesignatedTypeList` represents a collection of `DesignatedTypeElementSyntax`
130 | extension DesignatedTypeListSyntax: ExpressibleByArrayLiteral {
    | |- warning: extension declares a conformance of imported type 'DesignatedTypeListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
131 |   public init(arrayLiteral elements: Element...) {
132 |     self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:137:1: warning: extension declares a conformance of imported type 'DictionaryElementListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
135 |
136 | /// `DictionaryElementList` represents a collection of `DictionaryElementSyntax`
137 | extension DictionaryElementListSyntax: ExpressibleByArrayLiteral {
    | |- warning: extension declares a conformance of imported type 'DictionaryElementListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
138 |   public init(arrayLiteral elements: Element...) {
139 |     self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:144:1: warning: extension declares a conformance of imported type 'DifferentiabilityParamListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
142 |
143 | /// `DifferentiabilityParamList` represents a collection of `DifferentiabilityParamSyntax`
144 | extension DifferentiabilityParamListSyntax: ExpressibleByArrayLiteral {
    | |- warning: extension declares a conformance of imported type 'DifferentiabilityParamListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
145 |   public init(arrayLiteral elements: Element...) {
146 |     self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:151:1: warning: extension declares a conformance of imported type 'DocumentationAttributeArgumentsSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
149 |
150 | /// The arguments of the '@_documentation' attribute
151 | extension DocumentationAttributeArgumentsSyntax: ExpressibleByArrayLiteral {
    | |- warning: extension declares a conformance of imported type 'DocumentationAttributeArgumentsSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
152 |   public init(arrayLiteral elements: Element...) {
153 |     self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:158:1: warning: extension declares a conformance of imported type 'EffectsArgumentsSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
156 |
157 | /// The arguments of the '@_effect' attribute. These will be parsed during the SIL stage.
158 | extension EffectsArgumentsSyntax: ExpressibleByArrayLiteral {
    | |- warning: extension declares a conformance of imported type 'EffectsArgumentsSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
159 |   public init(arrayLiteral elements: Element...) {
160 |     self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:165:1: warning: extension declares a conformance of imported type 'EnumCaseElementListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
163 |
164 | /// A collection of 0 or more `EnumCaseElement`s.
165 | extension EnumCaseElementListSyntax: ExpressibleByArrayLiteral {
    | |- warning: extension declares a conformance of imported type 'EnumCaseElementListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
166 |   public init(arrayLiteral elements: Element...) {
167 |     self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:172:1: warning: extension declares a conformance of imported type 'EnumCaseParameterListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
170 |
171 | /// `EnumCaseParameterList` represents a collection of `EnumCaseParameterSyntax`
172 | extension EnumCaseParameterListSyntax: ExpressibleByArrayLiteral {
    | |- warning: extension declares a conformance of imported type 'EnumCaseParameterListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
173 |   public init(arrayLiteral elements: Element...) {
174 |     self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:179:1: warning: extension declares a conformance of imported type 'ExprListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
177 |
178 | /// A list of expressions connected by operators. This list is contained by a `SequenceExprSyntax`.
179 | extension ExprListSyntax: ExpressibleByArrayLiteral {
    | |- warning: extension declares a conformance of imported type 'ExprListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
180 |   public init(_ elements: [ExprSyntaxProtocol]) {
181 |     self = ExprListSyntax(elements.map {
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:192:1: warning: extension declares a conformance of imported type 'FunctionParameterListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
190 |
191 | /// `FunctionParameterList` represents a collection of `FunctionParameterSyntax`
192 | extension FunctionParameterListSyntax: ExpressibleByArrayLiteral {
    | |- warning: extension declares a conformance of imported type 'FunctionParameterListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
193 |   public init(arrayLiteral elements: Element...) {
194 |     self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:199:1: warning: extension declares a conformance of imported type 'GenericArgumentListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
197 |
198 | /// `GenericArgumentList` represents a collection of `GenericArgumentSyntax`
199 | extension GenericArgumentListSyntax: ExpressibleByArrayLiteral {
    | |- warning: extension declares a conformance of imported type 'GenericArgumentListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
200 |   public init(arrayLiteral elements: Element...) {
201 |     self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:206:1: warning: extension declares a conformance of imported type 'GenericParameterListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
204 |
205 | /// `GenericParameterList` represents a collection of `GenericParameterSyntax`
206 | extension GenericParameterListSyntax: ExpressibleByArrayLiteral {
    | |- warning: extension declares a conformance of imported type 'GenericParameterListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
207 |   public init(arrayLiteral elements: Element...) {
208 |     self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:213:1: warning: extension declares a conformance of imported type 'GenericRequirementListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
211 |
212 | /// `GenericRequirementList` represents a collection of `GenericRequirementSyntax`
213 | extension GenericRequirementListSyntax: ExpressibleByArrayLiteral {
    | |- warning: extension declares a conformance of imported type 'GenericRequirementListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
214 |   public init(arrayLiteral elements: Element...) {
215 |     self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:220:1: warning: extension declares a conformance of imported type 'IfConfigClauseListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
218 |
219 | /// `IfConfigClauseList` represents a collection of `IfConfigClauseSyntax`
220 | extension IfConfigClauseListSyntax: ExpressibleByArrayLiteral {
    | |- warning: extension declares a conformance of imported type 'IfConfigClauseListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
221 |   public init(arrayLiteral elements: Element...) {
222 |     self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:227:1: warning: extension declares a conformance of imported type 'InheritedTypeListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
225 |
226 | /// `InheritedTypeList` represents a collection of `InheritedTypeSyntax`
227 | extension InheritedTypeListSyntax: ExpressibleByArrayLiteral {
    | |- warning: extension declares a conformance of imported type 'InheritedTypeListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
228 |   public init(arrayLiteral elements: Element...) {
229 |     self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:234:1: warning: extension declares a conformance of imported type 'KeyPathComponentListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
232 |
233 | /// `KeyPathComponentList` represents a collection of `KeyPathComponentSyntax`
234 | extension KeyPathComponentListSyntax: ExpressibleByArrayLiteral {
    | |- warning: extension declares a conformance of imported type 'KeyPathComponentListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
235 |   public init(arrayLiteral elements: Element...) {
236 |     self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:241:1: warning: extension declares a conformance of imported type 'MemberDeclListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
239 |
240 | /// `MemberDeclList` represents a collection of `MemberDeclListItemSyntax`
241 | extension MemberDeclListSyntax: ExpressibleByArrayLiteral {
    | |- warning: extension declares a conformance of imported type 'MemberDeclListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
242 |   public init(arrayLiteral elements: Element...) {
243 |     self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:248:1: warning: extension declares a conformance of imported type 'ModifierListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
246 |
247 | /// `ModifierList` represents a collection of `DeclModifierSyntax`
248 | extension ModifierListSyntax: ExpressibleByArrayLiteral {
    | |- warning: extension declares a conformance of imported type 'ModifierListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
249 |   public init(arrayLiteral elements: Element...) {
250 |     self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:255:1: warning: extension declares a conformance of imported type 'MultipleTrailingClosureElementListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
253 |
254 | /// `MultipleTrailingClosureElementList` represents a collection of `MultipleTrailingClosureElementSyntax`
255 | extension MultipleTrailingClosureElementListSyntax: ExpressibleByArrayLiteral {
    | |- warning: extension declares a conformance of imported type 'MultipleTrailingClosureElementListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
256 |   public init(arrayLiteral elements: Element...) {
257 |     self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:262:1: warning: extension declares a conformance of imported type 'ObjCSelectorSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
260 |
261 | /// `ObjCSelector` represents a collection of `ObjCSelectorPieceSyntax`
262 | extension ObjCSelectorSyntax: ExpressibleByArrayLiteral {
    | |- warning: extension declares a conformance of imported type 'ObjCSelectorSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
263 |   public init(arrayLiteral elements: Element...) {
264 |     self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:269:1: warning: extension declares a conformance of imported type 'PatternBindingListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
267 |
268 | /// `PatternBindingList` represents a collection of `PatternBindingSyntax`
269 | extension PatternBindingListSyntax: ExpressibleByArrayLiteral {
    | |- warning: extension declares a conformance of imported type 'PatternBindingListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
270 |   public init(arrayLiteral elements: Element...) {
271 |     self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:276:1: warning: extension declares a conformance of imported type 'PrecedenceGroupAttributeListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
274 |
275 | /// `PrecedenceGroupAttributeList` represents a collection of `Syntax`
276 | extension PrecedenceGroupAttributeListSyntax: ExpressibleByArrayLiteral {
    | |- warning: extension declares a conformance of imported type 'PrecedenceGroupAttributeListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
277 |   public init(arrayLiteral elements: Element...) {
278 |     self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:283:1: warning: extension declares a conformance of imported type 'PrecedenceGroupNameListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
281 |
282 | /// `PrecedenceGroupNameList` represents a collection of `PrecedenceGroupNameElementSyntax`
283 | extension PrecedenceGroupNameListSyntax: ExpressibleByArrayLiteral {
    | |- warning: extension declares a conformance of imported type 'PrecedenceGroupNameListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
284 |   public init(arrayLiteral elements: Element...) {
285 |     self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:290:1: warning: extension declares a conformance of imported type 'PrimaryAssociatedTypeListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
288 |
289 | /// `PrimaryAssociatedTypeList` represents a collection of `PrimaryAssociatedTypeSyntax`
290 | extension PrimaryAssociatedTypeListSyntax: ExpressibleByArrayLiteral {
    | |- warning: extension declares a conformance of imported type 'PrimaryAssociatedTypeListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
291 |   public init(arrayLiteral elements: Element...) {
292 |     self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:297:1: warning: extension declares a conformance of imported type 'SpecializeAttributeSpecListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
295 |
296 | /// A collection of arguments for the `@_specialize` attribute
297 | extension SpecializeAttributeSpecListSyntax: ExpressibleByArrayLiteral {
    | |- warning: extension declares a conformance of imported type 'SpecializeAttributeSpecListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
298 |   public init(arrayLiteral elements: Element...) {
299 |     self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:304:1: warning: extension declares a conformance of imported type 'StringLiteralSegmentsSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
302 |
303 | /// `StringLiteralSegments` represents a collection of `Syntax`
304 | extension StringLiteralSegmentsSyntax: ExpressibleByArrayLiteral {
    | |- warning: extension declares a conformance of imported type 'StringLiteralSegmentsSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
305 |   public init(arrayLiteral elements: Element...) {
306 |     self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:311:1: warning: extension declares a conformance of imported type 'SwitchCaseListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
309 |
310 | /// `SwitchCaseList` represents a collection of `Syntax`
311 | extension SwitchCaseListSyntax: ExpressibleByArrayLiteral {
    | |- warning: extension declares a conformance of imported type 'SwitchCaseListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
312 |   public init(arrayLiteral elements: Element...) {
313 |     self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:318:1: warning: extension declares a conformance of imported type 'TupleExprElementListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
316 |
317 | /// `TupleExprElementList` represents a collection of `TupleExprElementSyntax`
318 | extension TupleExprElementListSyntax: ExpressibleByArrayLiteral {
    | |- warning: extension declares a conformance of imported type 'TupleExprElementListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
319 |   public init(arrayLiteral elements: Element...) {
320 |     self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:325:1: warning: extension declares a conformance of imported type 'TuplePatternElementListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
323 |
324 | /// `TuplePatternElementList` represents a collection of `TuplePatternElementSyntax`
325 | extension TuplePatternElementListSyntax: ExpressibleByArrayLiteral {
    | |- warning: extension declares a conformance of imported type 'TuplePatternElementListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
326 |   public init(arrayLiteral elements: Element...) {
327 |     self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:332:1: warning: extension declares a conformance of imported type 'TupleTypeElementListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
330 |
331 | /// `TupleTypeElementList` represents a collection of `TupleTypeElementSyntax`
332 | extension TupleTypeElementListSyntax: ExpressibleByArrayLiteral {
    | |- warning: extension declares a conformance of imported type 'TupleTypeElementListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
333 |   public init(arrayLiteral elements: Element...) {
334 |     self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:339:1: warning: extension declares a conformance of imported type 'UnexpectedNodesSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
337 |
338 | /// A collection of syntax nodes that occurred in the source code but could not be used to form a valid syntax tree.
339 | extension UnexpectedNodesSyntax: ExpressibleByArrayLiteral {
    | |- warning: extension declares a conformance of imported type 'UnexpectedNodesSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
340 |   public init(_ elements: [SyntaxProtocol]) {
341 |     self = UnexpectedNodesSyntax(elements.map {
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:352:1: warning: extension declares a conformance of imported type 'YieldExprListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
350 |
351 | /// `YieldExprList` represents a collection of `YieldExprListElementSyntax`
352 | extension YieldExprListSyntax: ExpressibleByArrayLiteral {
    | |- warning: extension declares a conformance of imported type 'YieldExprListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
353 |   public init(arrayLiteral elements: Element...) {
354 |     self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/SyntaxExpressibleByStringInterpolationConformances.swift:29:1: warning: extension declares a conformance of imported type 'AccessorDeclSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
27 | }
28 |
29 | extension AccessorDeclSyntax: SyntaxExpressibleByStringInterpolation {}
   | |- warning: extension declares a conformance of imported type 'AccessorDeclSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
30 |
31 | extension AttributeSyntax: SyntaxExpressibleByStringInterpolation {}
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/SyntaxExpressibleByStringInterpolationConformances.swift:31:1: warning: extension declares a conformance of imported type 'AttributeSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
29 | extension AccessorDeclSyntax: SyntaxExpressibleByStringInterpolation {}
30 |
31 | extension AttributeSyntax: SyntaxExpressibleByStringInterpolation {}
   | |- warning: extension declares a conformance of imported type 'AttributeSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
32 |
33 | extension CatchClauseSyntax: SyntaxExpressibleByStringInterpolation {}
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/SyntaxExpressibleByStringInterpolationConformances.swift:33:1: warning: extension declares a conformance of imported type 'CatchClauseSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
31 | extension AttributeSyntax: SyntaxExpressibleByStringInterpolation {}
32 |
33 | extension CatchClauseSyntax: SyntaxExpressibleByStringInterpolation {}
   | |- warning: extension declares a conformance of imported type 'CatchClauseSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
34 |
35 | extension ClosureParameterSyntax: SyntaxExpressibleByStringInterpolation {}
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/SyntaxExpressibleByStringInterpolationConformances.swift:35:1: warning: extension declares a conformance of imported type 'ClosureParameterSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
33 | extension CatchClauseSyntax: SyntaxExpressibleByStringInterpolation {}
34 |
35 | extension ClosureParameterSyntax: SyntaxExpressibleByStringInterpolation {}
   | |- warning: extension declares a conformance of imported type 'ClosureParameterSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
36 |
37 | extension DeclSyntax: SyntaxExpressibleByStringInterpolation {}
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/SyntaxExpressibleByStringInterpolationConformances.swift:37:1: warning: extension declares a conformance of imported type 'DeclSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
35 | extension ClosureParameterSyntax: SyntaxExpressibleByStringInterpolation {}
36 |
37 | extension DeclSyntax: SyntaxExpressibleByStringInterpolation {}
   | |- warning: extension declares a conformance of imported type 'DeclSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
38 |
39 | extension EnumCaseParameterSyntax: SyntaxExpressibleByStringInterpolation {}
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/SyntaxExpressibleByStringInterpolationConformances.swift:39:1: warning: extension declares a conformance of imported type 'EnumCaseParameterSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
37 | extension DeclSyntax: SyntaxExpressibleByStringInterpolation {}
38 |
39 | extension EnumCaseParameterSyntax: SyntaxExpressibleByStringInterpolation {}
   | |- warning: extension declares a conformance of imported type 'EnumCaseParameterSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
40 |
41 | extension ExprSyntax: SyntaxExpressibleByStringInterpolation {}
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/SyntaxExpressibleByStringInterpolationConformances.swift:41:1: warning: extension declares a conformance of imported type 'ExprSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
39 | extension EnumCaseParameterSyntax: SyntaxExpressibleByStringInterpolation {}
40 |
41 | extension ExprSyntax: SyntaxExpressibleByStringInterpolation {}
   | |- warning: extension declares a conformance of imported type 'ExprSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
42 |
43 | extension FunctionParameterSyntax: SyntaxExpressibleByStringInterpolation {}
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/SyntaxExpressibleByStringInterpolationConformances.swift:43:1: warning: extension declares a conformance of imported type 'FunctionParameterSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
41 | extension ExprSyntax: SyntaxExpressibleByStringInterpolation {}
42 |
43 | extension FunctionParameterSyntax: SyntaxExpressibleByStringInterpolation {}
   | |- warning: extension declares a conformance of imported type 'FunctionParameterSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
44 |
45 | extension GenericParameterClauseSyntax: SyntaxExpressibleByStringInterpolation {}
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/SyntaxExpressibleByStringInterpolationConformances.swift:45:1: warning: extension declares a conformance of imported type 'GenericParameterClauseSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
43 | extension FunctionParameterSyntax: SyntaxExpressibleByStringInterpolation {}
44 |
45 | extension GenericParameterClauseSyntax: SyntaxExpressibleByStringInterpolation {}
   | |- warning: extension declares a conformance of imported type 'GenericParameterClauseSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
46 |
47 | extension MemberDeclBlockSyntax: SyntaxExpressibleByStringInterpolation {}
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/SyntaxExpressibleByStringInterpolationConformances.swift:47:1: warning: extension declares a conformance of imported type 'MemberDeclBlockSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
45 | extension GenericParameterClauseSyntax: SyntaxExpressibleByStringInterpolation {}
46 |
47 | extension MemberDeclBlockSyntax: SyntaxExpressibleByStringInterpolation {}
   | |- warning: extension declares a conformance of imported type 'MemberDeclBlockSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
48 |
49 | extension PatternSyntax: SyntaxExpressibleByStringInterpolation {}
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/SyntaxExpressibleByStringInterpolationConformances.swift:49:1: warning: extension declares a conformance of imported type 'PatternSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
47 | extension MemberDeclBlockSyntax: SyntaxExpressibleByStringInterpolation {}
48 |
49 | extension PatternSyntax: SyntaxExpressibleByStringInterpolation {}
   | |- warning: extension declares a conformance of imported type 'PatternSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
50 |
51 | extension SourceFileSyntax: SyntaxExpressibleByStringInterpolation {}
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/SyntaxExpressibleByStringInterpolationConformances.swift:51:1: warning: extension declares a conformance of imported type 'SourceFileSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
49 | extension PatternSyntax: SyntaxExpressibleByStringInterpolation {}
50 |
51 | extension SourceFileSyntax: SyntaxExpressibleByStringInterpolation {}
   | |- warning: extension declares a conformance of imported type 'SourceFileSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
52 |
53 | extension StmtSyntax: SyntaxExpressibleByStringInterpolation {}
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/SyntaxExpressibleByStringInterpolationConformances.swift:53:1: warning: extension declares a conformance of imported type 'StmtSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
51 | extension SourceFileSyntax: SyntaxExpressibleByStringInterpolation {}
52 |
53 | extension StmtSyntax: SyntaxExpressibleByStringInterpolation {}
   | |- warning: extension declares a conformance of imported type 'StmtSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
54 |
55 | extension SwitchCaseSyntax: SyntaxExpressibleByStringInterpolation {}
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/SyntaxExpressibleByStringInterpolationConformances.swift:55:1: warning: extension declares a conformance of imported type 'SwitchCaseSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
53 | extension StmtSyntax: SyntaxExpressibleByStringInterpolation {}
54 |
55 | extension SwitchCaseSyntax: SyntaxExpressibleByStringInterpolation {}
   | |- warning: extension declares a conformance of imported type 'SwitchCaseSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
56 |
57 | extension TypeSyntax: SyntaxExpressibleByStringInterpolation {}
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/SyntaxExpressibleByStringInterpolationConformances.swift:57:1: warning: extension declares a conformance of imported type 'TypeSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
55 | extension SwitchCaseSyntax: SyntaxExpressibleByStringInterpolation {}
56 |
57 | extension TypeSyntax: SyntaxExpressibleByStringInterpolation {}
   | |- warning: extension declares a conformance of imported type 'TypeSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
58 |
59 | // TODO: This should be inlined in SyntaxParseable.init(stringInterpolation:),
[244/249] Compiling SwiftSyntaxBuilder BuildableCollectionNodes.swift
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:18:1: warning: extension declares a conformance of imported type 'AccessPathSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
 16 |
 17 | /// `AccessPath` represents a collection of `AccessPathComponentSyntax`
 18 | extension AccessPathSyntax: ExpressibleByArrayLiteral {
    | |- warning: extension declares a conformance of imported type 'AccessPathSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 19 |   public init(arrayLiteral elements: Element...) {
 20 |     self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:25:1: warning: extension declares a conformance of imported type 'AccessorListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
 23 |
 24 | /// `AccessorList` represents a collection of `AccessorDeclSyntax`
 25 | extension AccessorListSyntax: ExpressibleByArrayLiteral {
    | |- warning: extension declares a conformance of imported type 'AccessorListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 26 |   public init(arrayLiteral elements: Element...) {
 27 |     self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:32:1: warning: extension declares a conformance of imported type 'ArrayElementListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
 30 |
 31 | /// `ArrayElementList` represents a collection of `ArrayElementSyntax`
 32 | extension ArrayElementListSyntax: ExpressibleByArrayLiteral {
    | |- warning: extension declares a conformance of imported type 'ArrayElementListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 33 |   public init(arrayLiteral elements: Element...) {
 34 |     self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:39:1: warning: extension declares a conformance of imported type 'AttributeListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
 37 |
 38 | /// `AttributeList` represents a collection of `Syntax`
 39 | extension AttributeListSyntax: ExpressibleByArrayLiteral {
    | |- warning: extension declares a conformance of imported type 'AttributeListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 40 |   public init(arrayLiteral elements: Element...) {
 41 |     self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:46:1: warning: extension declares a conformance of imported type 'AvailabilitySpecListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
 44 |
 45 | /// `AvailabilitySpecList` represents a collection of `AvailabilityArgumentSyntax`
 46 | extension AvailabilitySpecListSyntax: ExpressibleByArrayLiteral {
    | |- warning: extension declares a conformance of imported type 'AvailabilitySpecListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 47 |   public init(arrayLiteral elements: Element...) {
 48 |     self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:53:1: warning: extension declares a conformance of imported type 'AvailabilityVersionRestrictionListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
 51 |
 52 | /// `AvailabilityVersionRestrictionList` represents a collection of `AvailabilityVersionRestrictionListEntrySyntax`
 53 | extension AvailabilityVersionRestrictionListSyntax: ExpressibleByArrayLiteral {
    | |- warning: extension declares a conformance of imported type 'AvailabilityVersionRestrictionListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 54 |   public init(arrayLiteral elements: Element...) {
 55 |     self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:60:1: warning: extension declares a conformance of imported type 'CaseItemListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
 58 |
 59 | /// `CaseItemList` represents a collection of `CaseItemSyntax`
 60 | extension CaseItemListSyntax: ExpressibleByArrayLiteral {
    | |- warning: extension declares a conformance of imported type 'CaseItemListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 61 |   public init(arrayLiteral elements: Element...) {
 62 |     self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:67:1: warning: extension declares a conformance of imported type 'CatchClauseListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
 65 |
 66 | /// `CatchClauseList` represents a collection of `CatchClauseSyntax`
 67 | extension CatchClauseListSyntax: ExpressibleByArrayLiteral {
    | |- warning: extension declares a conformance of imported type 'CatchClauseListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 68 |   public init(arrayLiteral elements: Element...) {
 69 |     self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:74:1: warning: extension declares a conformance of imported type 'CatchItemListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
 72 |
 73 | /// `CatchItemList` represents a collection of `CatchItemSyntax`
 74 | extension CatchItemListSyntax: ExpressibleByArrayLiteral {
    | |- warning: extension declares a conformance of imported type 'CatchItemListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 75 |   public init(arrayLiteral elements: Element...) {
 76 |     self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:81:1: warning: extension declares a conformance of imported type 'ClosureCaptureItemListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
 79 |
 80 | /// `ClosureCaptureItemList` represents a collection of `ClosureCaptureItemSyntax`
 81 | extension ClosureCaptureItemListSyntax: ExpressibleByArrayLiteral {
    | |- warning: extension declares a conformance of imported type 'ClosureCaptureItemListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 82 |   public init(arrayLiteral elements: Element...) {
 83 |     self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:88:1: warning: extension declares a conformance of imported type 'ClosureParamListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
 86 |
 87 | /// `ClosureParamList` represents a collection of `ClosureParamSyntax`
 88 | extension ClosureParamListSyntax: ExpressibleByArrayLiteral {
    | |- warning: extension declares a conformance of imported type 'ClosureParamListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 89 |   public init(arrayLiteral elements: Element...) {
 90 |     self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:95:1: warning: extension declares a conformance of imported type 'ClosureParameterListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
 93 |
 94 | /// `ClosureParameterList` represents a collection of `ClosureParameterSyntax`
 95 | extension ClosureParameterListSyntax: ExpressibleByArrayLiteral {
    | |- warning: extension declares a conformance of imported type 'ClosureParameterListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 96 |   public init(arrayLiteral elements: Element...) {
 97 |     self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:102:1: warning: extension declares a conformance of imported type 'CodeBlockItemListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
100 |
101 | /// `CodeBlockItemList` represents a collection of `CodeBlockItemSyntax`
102 | extension CodeBlockItemListSyntax: ExpressibleByArrayLiteral {
    | |- warning: extension declares a conformance of imported type 'CodeBlockItemListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
103 |   public init(arrayLiteral elements: Element...) {
104 |     self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:109:1: warning: extension declares a conformance of imported type 'CompositionTypeElementListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
107 |
108 | /// `CompositionTypeElementList` represents a collection of `CompositionTypeElementSyntax`
109 | extension CompositionTypeElementListSyntax: ExpressibleByArrayLiteral {
    | |- warning: extension declares a conformance of imported type 'CompositionTypeElementListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
110 |   public init(arrayLiteral elements: Element...) {
111 |     self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:116:1: warning: extension declares a conformance of imported type 'ConditionElementListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
114 |
115 | /// `ConditionElementList` represents a collection of `ConditionElementSyntax`
116 | extension ConditionElementListSyntax: ExpressibleByArrayLiteral {
    | |- warning: extension declares a conformance of imported type 'ConditionElementListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
117 |   public init(arrayLiteral elements: Element...) {
118 |     self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:123:1: warning: extension declares a conformance of imported type 'DeclNameArgumentListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
121 |
122 | /// `DeclNameArgumentList` represents a collection of `DeclNameArgumentSyntax`
123 | extension DeclNameArgumentListSyntax: ExpressibleByArrayLiteral {
    | |- warning: extension declares a conformance of imported type 'DeclNameArgumentListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
124 |   public init(arrayLiteral elements: Element...) {
125 |     self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:130:1: warning: extension declares a conformance of imported type 'DesignatedTypeListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
128 |
129 | /// `DesignatedTypeList` represents a collection of `DesignatedTypeElementSyntax`
130 | extension DesignatedTypeListSyntax: ExpressibleByArrayLiteral {
    | |- warning: extension declares a conformance of imported type 'DesignatedTypeListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
131 |   public init(arrayLiteral elements: Element...) {
132 |     self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:137:1: warning: extension declares a conformance of imported type 'DictionaryElementListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
135 |
136 | /// `DictionaryElementList` represents a collection of `DictionaryElementSyntax`
137 | extension DictionaryElementListSyntax: ExpressibleByArrayLiteral {
    | |- warning: extension declares a conformance of imported type 'DictionaryElementListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
138 |   public init(arrayLiteral elements: Element...) {
139 |     self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:144:1: warning: extension declares a conformance of imported type 'DifferentiabilityParamListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
142 |
143 | /// `DifferentiabilityParamList` represents a collection of `DifferentiabilityParamSyntax`
144 | extension DifferentiabilityParamListSyntax: ExpressibleByArrayLiteral {
    | |- warning: extension declares a conformance of imported type 'DifferentiabilityParamListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
145 |   public init(arrayLiteral elements: Element...) {
146 |     self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:151:1: warning: extension declares a conformance of imported type 'DocumentationAttributeArgumentsSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
149 |
150 | /// The arguments of the '@_documentation' attribute
151 | extension DocumentationAttributeArgumentsSyntax: ExpressibleByArrayLiteral {
    | |- warning: extension declares a conformance of imported type 'DocumentationAttributeArgumentsSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
152 |   public init(arrayLiteral elements: Element...) {
153 |     self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:158:1: warning: extension declares a conformance of imported type 'EffectsArgumentsSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
156 |
157 | /// The arguments of the '@_effect' attribute. These will be parsed during the SIL stage.
158 | extension EffectsArgumentsSyntax: ExpressibleByArrayLiteral {
    | |- warning: extension declares a conformance of imported type 'EffectsArgumentsSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
159 |   public init(arrayLiteral elements: Element...) {
160 |     self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:165:1: warning: extension declares a conformance of imported type 'EnumCaseElementListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
163 |
164 | /// A collection of 0 or more `EnumCaseElement`s.
165 | extension EnumCaseElementListSyntax: ExpressibleByArrayLiteral {
    | |- warning: extension declares a conformance of imported type 'EnumCaseElementListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
166 |   public init(arrayLiteral elements: Element...) {
167 |     self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:172:1: warning: extension declares a conformance of imported type 'EnumCaseParameterListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
170 |
171 | /// `EnumCaseParameterList` represents a collection of `EnumCaseParameterSyntax`
172 | extension EnumCaseParameterListSyntax: ExpressibleByArrayLiteral {
    | |- warning: extension declares a conformance of imported type 'EnumCaseParameterListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
173 |   public init(arrayLiteral elements: Element...) {
174 |     self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:179:1: warning: extension declares a conformance of imported type 'ExprListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
177 |
178 | /// A list of expressions connected by operators. This list is contained by a `SequenceExprSyntax`.
179 | extension ExprListSyntax: ExpressibleByArrayLiteral {
    | |- warning: extension declares a conformance of imported type 'ExprListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
180 |   public init(_ elements: [ExprSyntaxProtocol]) {
181 |     self = ExprListSyntax(elements.map {
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:192:1: warning: extension declares a conformance of imported type 'FunctionParameterListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
190 |
191 | /// `FunctionParameterList` represents a collection of `FunctionParameterSyntax`
192 | extension FunctionParameterListSyntax: ExpressibleByArrayLiteral {
    | |- warning: extension declares a conformance of imported type 'FunctionParameterListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
193 |   public init(arrayLiteral elements: Element...) {
194 |     self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:199:1: warning: extension declares a conformance of imported type 'GenericArgumentListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
197 |
198 | /// `GenericArgumentList` represents a collection of `GenericArgumentSyntax`
199 | extension GenericArgumentListSyntax: ExpressibleByArrayLiteral {
    | |- warning: extension declares a conformance of imported type 'GenericArgumentListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
200 |   public init(arrayLiteral elements: Element...) {
201 |     self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:206:1: warning: extension declares a conformance of imported type 'GenericParameterListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
204 |
205 | /// `GenericParameterList` represents a collection of `GenericParameterSyntax`
206 | extension GenericParameterListSyntax: ExpressibleByArrayLiteral {
    | |- warning: extension declares a conformance of imported type 'GenericParameterListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
207 |   public init(arrayLiteral elements: Element...) {
208 |     self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:213:1: warning: extension declares a conformance of imported type 'GenericRequirementListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
211 |
212 | /// `GenericRequirementList` represents a collection of `GenericRequirementSyntax`
213 | extension GenericRequirementListSyntax: ExpressibleByArrayLiteral {
    | |- warning: extension declares a conformance of imported type 'GenericRequirementListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
214 |   public init(arrayLiteral elements: Element...) {
215 |     self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:220:1: warning: extension declares a conformance of imported type 'IfConfigClauseListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
218 |
219 | /// `IfConfigClauseList` represents a collection of `IfConfigClauseSyntax`
220 | extension IfConfigClauseListSyntax: ExpressibleByArrayLiteral {
    | |- warning: extension declares a conformance of imported type 'IfConfigClauseListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
221 |   public init(arrayLiteral elements: Element...) {
222 |     self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:227:1: warning: extension declares a conformance of imported type 'InheritedTypeListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
225 |
226 | /// `InheritedTypeList` represents a collection of `InheritedTypeSyntax`
227 | extension InheritedTypeListSyntax: ExpressibleByArrayLiteral {
    | |- warning: extension declares a conformance of imported type 'InheritedTypeListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
228 |   public init(arrayLiteral elements: Element...) {
229 |     self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:234:1: warning: extension declares a conformance of imported type 'KeyPathComponentListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
232 |
233 | /// `KeyPathComponentList` represents a collection of `KeyPathComponentSyntax`
234 | extension KeyPathComponentListSyntax: ExpressibleByArrayLiteral {
    | |- warning: extension declares a conformance of imported type 'KeyPathComponentListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
235 |   public init(arrayLiteral elements: Element...) {
236 |     self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:241:1: warning: extension declares a conformance of imported type 'MemberDeclListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
239 |
240 | /// `MemberDeclList` represents a collection of `MemberDeclListItemSyntax`
241 | extension MemberDeclListSyntax: ExpressibleByArrayLiteral {
    | |- warning: extension declares a conformance of imported type 'MemberDeclListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
242 |   public init(arrayLiteral elements: Element...) {
243 |     self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:248:1: warning: extension declares a conformance of imported type 'ModifierListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
246 |
247 | /// `ModifierList` represents a collection of `DeclModifierSyntax`
248 | extension ModifierListSyntax: ExpressibleByArrayLiteral {
    | |- warning: extension declares a conformance of imported type 'ModifierListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
249 |   public init(arrayLiteral elements: Element...) {
250 |     self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:255:1: warning: extension declares a conformance of imported type 'MultipleTrailingClosureElementListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
253 |
254 | /// `MultipleTrailingClosureElementList` represents a collection of `MultipleTrailingClosureElementSyntax`
255 | extension MultipleTrailingClosureElementListSyntax: ExpressibleByArrayLiteral {
    | |- warning: extension declares a conformance of imported type 'MultipleTrailingClosureElementListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
256 |   public init(arrayLiteral elements: Element...) {
257 |     self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:262:1: warning: extension declares a conformance of imported type 'ObjCSelectorSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
260 |
261 | /// `ObjCSelector` represents a collection of `ObjCSelectorPieceSyntax`
262 | extension ObjCSelectorSyntax: ExpressibleByArrayLiteral {
    | |- warning: extension declares a conformance of imported type 'ObjCSelectorSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
263 |   public init(arrayLiteral elements: Element...) {
264 |     self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:269:1: warning: extension declares a conformance of imported type 'PatternBindingListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
267 |
268 | /// `PatternBindingList` represents a collection of `PatternBindingSyntax`
269 | extension PatternBindingListSyntax: ExpressibleByArrayLiteral {
    | |- warning: extension declares a conformance of imported type 'PatternBindingListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
270 |   public init(arrayLiteral elements: Element...) {
271 |     self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:276:1: warning: extension declares a conformance of imported type 'PrecedenceGroupAttributeListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
274 |
275 | /// `PrecedenceGroupAttributeList` represents a collection of `Syntax`
276 | extension PrecedenceGroupAttributeListSyntax: ExpressibleByArrayLiteral {
    | |- warning: extension declares a conformance of imported type 'PrecedenceGroupAttributeListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
277 |   public init(arrayLiteral elements: Element...) {
278 |     self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:283:1: warning: extension declares a conformance of imported type 'PrecedenceGroupNameListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
281 |
282 | /// `PrecedenceGroupNameList` represents a collection of `PrecedenceGroupNameElementSyntax`
283 | extension PrecedenceGroupNameListSyntax: ExpressibleByArrayLiteral {
    | |- warning: extension declares a conformance of imported type 'PrecedenceGroupNameListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
284 |   public init(arrayLiteral elements: Element...) {
285 |     self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:290:1: warning: extension declares a conformance of imported type 'PrimaryAssociatedTypeListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
288 |
289 | /// `PrimaryAssociatedTypeList` represents a collection of `PrimaryAssociatedTypeSyntax`
290 | extension PrimaryAssociatedTypeListSyntax: ExpressibleByArrayLiteral {
    | |- warning: extension declares a conformance of imported type 'PrimaryAssociatedTypeListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
291 |   public init(arrayLiteral elements: Element...) {
292 |     self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:297:1: warning: extension declares a conformance of imported type 'SpecializeAttributeSpecListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
295 |
296 | /// A collection of arguments for the `@_specialize` attribute
297 | extension SpecializeAttributeSpecListSyntax: ExpressibleByArrayLiteral {
    | |- warning: extension declares a conformance of imported type 'SpecializeAttributeSpecListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
298 |   public init(arrayLiteral elements: Element...) {
299 |     self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:304:1: warning: extension declares a conformance of imported type 'StringLiteralSegmentsSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
302 |
303 | /// `StringLiteralSegments` represents a collection of `Syntax`
304 | extension StringLiteralSegmentsSyntax: ExpressibleByArrayLiteral {
    | |- warning: extension declares a conformance of imported type 'StringLiteralSegmentsSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
305 |   public init(arrayLiteral elements: Element...) {
306 |     self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:311:1: warning: extension declares a conformance of imported type 'SwitchCaseListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
309 |
310 | /// `SwitchCaseList` represents a collection of `Syntax`
311 | extension SwitchCaseListSyntax: ExpressibleByArrayLiteral {
    | |- warning: extension declares a conformance of imported type 'SwitchCaseListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
312 |   public init(arrayLiteral elements: Element...) {
313 |     self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:318:1: warning: extension declares a conformance of imported type 'TupleExprElementListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
316 |
317 | /// `TupleExprElementList` represents a collection of `TupleExprElementSyntax`
318 | extension TupleExprElementListSyntax: ExpressibleByArrayLiteral {
    | |- warning: extension declares a conformance of imported type 'TupleExprElementListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
319 |   public init(arrayLiteral elements: Element...) {
320 |     self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:325:1: warning: extension declares a conformance of imported type 'TuplePatternElementListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
323 |
324 | /// `TuplePatternElementList` represents a collection of `TuplePatternElementSyntax`
325 | extension TuplePatternElementListSyntax: ExpressibleByArrayLiteral {
    | |- warning: extension declares a conformance of imported type 'TuplePatternElementListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
326 |   public init(arrayLiteral elements: Element...) {
327 |     self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:332:1: warning: extension declares a conformance of imported type 'TupleTypeElementListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
330 |
331 | /// `TupleTypeElementList` represents a collection of `TupleTypeElementSyntax`
332 | extension TupleTypeElementListSyntax: ExpressibleByArrayLiteral {
    | |- warning: extension declares a conformance of imported type 'TupleTypeElementListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
333 |   public init(arrayLiteral elements: Element...) {
334 |     self.init(elements)
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:339:1: warning: extension declares a conformance of imported type 'UnexpectedNodesSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
337 |
338 | /// A collection of syntax nodes that occurred in the source code but could not be used to form a valid syntax tree.
339 | extension UnexpectedNodesSyntax: ExpressibleByArrayLiteral {
    | |- warning: extension declares a conformance of imported type 'UnexpectedNodesSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
340 |   public init(_ elements: [SyntaxProtocol]) {
341 |     self = UnexpectedNodesSyntax(elements.map {
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/BuildableCollectionNodes.swift:352:1: warning: extension declares a conformance of imported type 'YieldExprListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
350 |
351 | /// `YieldExprList` represents a collection of `YieldExprListElementSyntax`
352 | extension YieldExprListSyntax: ExpressibleByArrayLiteral {
    | |- warning: extension declares a conformance of imported type 'YieldExprListSyntax' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
353 |   public init(arrayLiteral elements: Element...) {
354 |     self.init(elements)
[245/249] Compiling SwiftSyntaxBuilder BuildableNodes.swift
[246/249] Compiling SwiftSyntaxBuilder ResultBuilders.swift
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-1":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:android-6.1-latest swift build --swift-sdk aarch64-unknown-linux-android24 2>&1
android-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:fe1962677657b2408c217cb5cceb3c09bc1d91486e360cebbc6eee461a5945d8
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:android-6.1-latest
[0/1] Planning build
[1/1] Compiling plugin GenerateManual
Building for debugging...
[1/17] Write swift-version-24593BA9C3E375BF.txt
[3/62] Compiling ArgumentParserToolInfo ToolInfo.swift
[4/62] Emitting module ArgumentParserToolInfo
[6/100] Compiling ArgumentParser ArgumentVisibility.swift
[7/100] Compiling ArgumentParser CompletionKind.swift
[8/100] Compiling ArgumentParser Errors.swift
[9/100] Compiling ArgumentParser Flag.swift
[10/100] Compiling ArgumentParser NameSpecification.swift
[11/100] Compiling ArgumentParser Option.swift
[12/105] Compiling ArgumentParser BashCompletionsGenerator.swift
[13/105] Compiling ArgumentParser CompletionsGenerator.swift
[14/105] Compiling ArgumentParser FishCompletionsGenerator.swift
[15/105] Compiling ArgumentParser ZshCompletionsGenerator.swift
[16/105] Compiling ArgumentParser Argument.swift
[17/105] Compiling ArgumentParser ArgumentHelp.swift
[18/105] Emitting module ArgumentParser
[25/110] Compiling ArgumentParser OptionGroup.swift
[26/110] Compiling ArgumentParser AsyncParsableCommand.swift
[27/110] Compiling ArgumentParser CommandConfiguration.swift
[28/110] Compiling ArgumentParser CommandGroup.swift
[29/110] Compiling ArgumentParser EnumerableFlag.swift
[30/110] Compiling ArgumentParser UsageGenerator.swift
[31/110] Compiling ArgumentParser CollectionExtensions.swift
[32/110] Compiling ArgumentParser Platform.swift
[33/110] Compiling ArgumentParser SequenceExtensions.swift
[34/110] Compiling ArgumentParser StringExtensions.swift
[35/110] Compiling ArgumentParser Tree.swift
[36/110] Compiling ArgumentParser DumpHelpGenerator.swift
[37/110] Compiling ArgumentParser HelpCommand.swift
[38/110] Compiling ArgumentParser HelpGenerator.swift
[39/110] Compiling ArgumentParser MessageInfo.swift
[41/110] Compiling ArgumentParser Name.swift
[42/110] Compiling ArgumentParser Parsed.swift
[43/110] Compiling ArgumentParser ParsedValues.swift
[44/110] Compiling ArgumentParser ParserError.swift
[45/110] Compiling ArgumentParser SplitArguments.swift
[46/110] Compiling ArgumentParser ArgumentDefinition.swift
[47/110] Compiling ArgumentParser ArgumentSet.swift
[48/110] Compiling ArgumentParser CommandParser.swift
[49/110] Compiling ArgumentParser InputKey.swift
[50/110] Compiling ArgumentParser InputOrigin.swift
[51/110] Compiling ArgumentParser ExpressibleByArgument.swift
[52/110] Compiling ArgumentParser ParsableArguments.swift
[53/110] Compiling ArgumentParser ParsableArgumentsValidation.swift
[54/110] Compiling ArgumentParser ParsableCommand.swift
[55/110] Compiling ArgumentParser ArgumentDecoder.swift
[62/110] Emitting module SwiftSyntax
[63/110] Compiling SwiftSyntax SyntaxExprNodes.swift
[64/110] Compiling SwiftSyntax SyntaxNodes.swift
[65/110] Compiling SwiftSyntax SyntaxPatternNodes.swift
[66/110] Compiling SwiftSyntax SyntaxStmtNodes.swift
[67/110] Compiling SwiftSyntax SyntaxTypeNodes.swift
[99/161] Compiling SwiftIDEUtils SyntaxClassification.swift
[100/161] Compiling SwiftDiagnostics Note.swift
[101/161] Compiling SwiftDiagnostics Message.swift
[102/161] Compiling SwiftBasicFormat SyntaxProtocol+Formatted.swift
[103/161] Compiling SwiftBasicFormat Trivia+FormatExtensions.swift
[104/161] Compiling SwiftBasicFormat BasicFormat+Extensions.swift
[105/161] Compiling SwiftIDEUtils Syntax+Classifications.swift
[106/161] Emitting module SwiftIDEUtils
[107/161] Compiling SwiftIDEUtils SyntaxClassifier.swift
[108/162] Emitting module SwiftBasicFormat
[109/162] Compiling SwiftBasicFormat BasicFormat.swift
[111/163] Compiling SwiftDiagnostics FixIt.swift
[112/163] Compiling SwiftDiagnostics GroupedDiagnostics.swift
[113/163] Compiling SwiftDiagnostics Diagnostic.swift
[114/163] Emitting module SwiftDiagnostics
[115/163] Compiling SwiftDiagnostics DiagnosticsFormatter.swift
[117/163] Wrapping AST for SwiftIDEUtils for debugging
[119/162] Compiling SwiftParser TopLevel.swift
[120/162] Compiling SwiftParser TriviaParser.swift
[121/162] Compiling SwiftParser Types.swift
[122/162] Compiling SwiftParser DeclarationModifier.swift
[123/166] Emitting module SwiftParser
[124/166] Compiling SwiftParser IsLexerClassified.swift
[125/166] Compiling SwiftParser Parser+Entry.swift
[126/166] Compiling SwiftParser TokenSpecStaticMembers.swift
[127/166] Compiling SwiftParser TypeAttribute.swift
[128/166] Compiling SwiftParser SyntaxUtils.swift
[129/166] Compiling SwiftParser TokenConsumer.swift
[130/166] Compiling SwiftParser TokenPrecedence.swift
[131/166] Compiling SwiftParser TokenSpec.swift
[132/166] Compiling SwiftParser TokenSpecSet.swift
[133/166] Compiling SwiftParser Recovery.swift
[134/166] Compiling SwiftParser Specifiers.swift
[135/166] Compiling SwiftParser Statements.swift
[136/166] Compiling SwiftParser StringLiteralRepresentedLiteralValue.swift
[137/166] Compiling SwiftParser StringLiterals.swift
[138/166] Compiling SwiftParser Names.swift
[139/166] Compiling SwiftParser Nominals.swift
[140/166] Compiling SwiftParser Parameters.swift
[141/166] Compiling SwiftParser Parser.swift
[142/166] Compiling SwiftParser Patterns.swift
[143/166] Compiling SwiftParser RegexLiteralLexer.swift
[144/166] Compiling SwiftParser UnicodeScalarExtensions.swift
[145/166] Compiling SwiftParser Lookahead.swift
[146/166] Compiling SwiftParser LoopProgressCondition.swift
[147/166] Compiling SwiftParser Modifiers.swift
[148/166] Compiling SwiftParser Expressions.swift
[149/166] Compiling SwiftParser Cursor.swift
[150/166] Compiling SwiftParser Lexeme.swift
[151/166] Compiling SwiftParser LexemeSequence.swift
[152/166] Compiling SwiftParser Lexer.swift
[153/166] Compiling SwiftParser Attributes.swift
[154/166] Compiling SwiftParser Availability.swift
[155/166] Compiling SwiftParser CharacterInfo.swift
[156/166] Compiling SwiftParser Declarations.swift
[157/166] Compiling SwiftParser Directives.swift
[158/167] Wrapping AST for SwiftParser for debugging
[160/202] Compiling SwiftParserDiagnostics SyntaxKindNameForDiagnostics.swift
[161/203] Compiling SwiftRefactor MigrateToNewIfLetSyntax.swift
[162/203] Compiling SwiftRefactor RefactoringProvider.swift
[163/203] Compiling SwiftRefactor RemoveSeparatorsFromIntegerLiteral.swift
[164/203] Compiling SwiftRefactor FormatRawStringLiteral.swift
[165/203] Compiling SwiftOperators PrecedenceGroup.swift
[166/204] Compiling SwiftRefactor AddSeparatorsToIntegerLiteral.swift
[167/204] Emitting module SwiftRefactor
[168/204] Compiling SwiftOperators PrecedenceGraph.swift
[169/204] Compiling SwiftOperators OperatorTable.swift
[170/204] Compiling SwiftParserDiagnostics TokenNameForDiagnostics.swift
[171/204] Emitting module lit_test_helper
[172/204] Compiling SwiftOperators SyntaxSynthesis.swift
[173/204] Compiling SwiftParserDiagnostics SyntaxExtensions.swift
[174/204] Compiling SwiftParserDiagnostics Utils.swift
[175/204] Compiling SwiftOperators OperatorTable+Semantics.swift
[176/204] Compiling SwiftRefactor OpaqueParameterToGeneric.swift
[177/204] Compiling SwiftRefactor IntegerLiteralUtilities.swift
[178/204] Compiling SwiftParserDiagnostics ChildNameForDiagnostics.swift
[179/205] Compiling SwiftParserDiagnostics DiagnosticExtensions.swift
[180/205] Compiling SwiftParserDiagnostics LexerDiagnosticMessages.swift
[181/205] Compiling SwiftParserDiagnostics MissingNodesError.swift
[182/205] Compiling SwiftParserDiagnostics MissingTokenError.swift
[183/205] Compiling SwiftOperators OperatorTable+Folding.swift
[184/205] Emitting module SwiftOperators
[187/206] Compiling lit_test_helper ClassifiedSyntaxTreePrinter.swift
[188/206] Compiling lit_test_helper CommandLineArguments.swift
[189/206] Compiling lit_test_helper main.swift
[191/207] Compiling SwiftParserDiagnostics ParserDiagnosticMessages.swift
[192/207] Compiling SwiftParserDiagnostics PresenceUtils.swift
[196/207] Wrapping AST for SwiftOperators for debugging
[197/207] Wrapping AST for lit-test-helper for debugging
[198/207] Write Objects.LinkFileList
[200/207] Emitting module SwiftParserDiagnostics
[201/207] Compiling SwiftParserDiagnostics MultiLineStringLiteralDiagnosticsGenerator.swift
[202/207] Compiling SwiftParserDiagnostics ParseDiagnosticsGenerator.swift
[203/208] Wrapping AST for SwiftParserDiagnostics for debugging
[204/208] Linking lit-test-helper
[206/222] Compiling swift_parser_cli TerminalUtils.swift
/host/spi-builder-workspace/Sources/swift-parser-cli/TerminalUtils.swift:18:8: error: no such module 'Darwin.C'
16 | import CRT
17 | #else
18 | import Darwin.C
   |        `- error: no such module 'Darwin.C'
19 | #endif
20 |
error: emit-module command failed with exit code 1 (use -v to see invocation)
[207/222] Emitting module swift_parser_cli
/host/spi-builder-workspace/Sources/swift-parser-cli/TerminalUtils.swift:18:8: error: no such module 'Darwin.C'
16 | import CRT
17 | #else
18 | import Darwin.C
   |        `- error: no such module 'Darwin.C'
19 | #endif
20 |
[208/222] Compiling swift_parser_cli swift-parser-cli.swift
/host/spi-builder-workspace/Sources/swift-parser-cli/TerminalUtils.swift:18:8: error: no such module 'Darwin.C'
16 | import CRT
17 | #else
18 | import Darwin.C
   |        `- error: no such module 'Darwin.C'
19 | #endif
20 |
[209/222] Compiling SwiftSyntaxBuilder SyntaxNodeWithBody.swift
[210/222] Compiling SwiftSyntaxBuilder ValidatingSyntaxNodes.swift
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/SyntaxExpressibleByStringInterpolationConformances.swift:29:1: warning: extension declares a conformance of imported type 'AccessorDeclSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
27 | }
28 |
29 | extension AccessorDeclSyntax: SyntaxExpressibleByStringInterpolation {}
   | |- warning: extension declares a conformance of imported type 'AccessorDeclSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
30 |
31 | extension AttributeSyntax: SyntaxExpressibleByStringInterpolation {}
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/SyntaxExpressibleByStringInterpolationConformances.swift:31:1: warning: extension declares a conformance of imported type 'AttributeSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
29 | extension AccessorDeclSyntax: SyntaxExpressibleByStringInterpolation {}
30 |
31 | extension AttributeSyntax: SyntaxExpressibleByStringInterpolation {}
   | |- warning: extension declares a conformance of imported type 'AttributeSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
32 |
33 | extension CatchClauseSyntax: SyntaxExpressibleByStringInterpolation {}
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/SyntaxExpressibleByStringInterpolationConformances.swift:33:1: warning: extension declares a conformance of imported type 'CatchClauseSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
31 | extension AttributeSyntax: SyntaxExpressibleByStringInterpolation {}
32 |
33 | extension CatchClauseSyntax: SyntaxExpressibleByStringInterpolation {}
   | |- warning: extension declares a conformance of imported type 'CatchClauseSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
34 |
35 | extension ClosureParameterSyntax: SyntaxExpressibleByStringInterpolation {}
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/SyntaxExpressibleByStringInterpolationConformances.swift:35:1: warning: extension declares a conformance of imported type 'ClosureParameterSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
33 | extension CatchClauseSyntax: SyntaxExpressibleByStringInterpolation {}
34 |
35 | extension ClosureParameterSyntax: SyntaxExpressibleByStringInterpolation {}
   | |- warning: extension declares a conformance of imported type 'ClosureParameterSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
36 |
37 | extension DeclSyntax: SyntaxExpressibleByStringInterpolation {}
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/SyntaxExpressibleByStringInterpolationConformances.swift:37:1: warning: extension declares a conformance of imported type 'DeclSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
35 | extension ClosureParameterSyntax: SyntaxExpressibleByStringInterpolation {}
36 |
37 | extension DeclSyntax: SyntaxExpressibleByStringInterpolation {}
   | |- warning: extension declares a conformance of imported type 'DeclSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
38 |
39 | extension EnumCaseParameterSyntax: SyntaxExpressibleByStringInterpolation {}
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/SyntaxExpressibleByStringInterpolationConformances.swift:39:1: warning: extension declares a conformance of imported type 'EnumCaseParameterSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
37 | extension DeclSyntax: SyntaxExpressibleByStringInterpolation {}
38 |
39 | extension EnumCaseParameterSyntax: SyntaxExpressibleByStringInterpolation {}
   | |- warning: extension declares a conformance of imported type 'EnumCaseParameterSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
40 |
41 | extension ExprSyntax: SyntaxExpressibleByStringInterpolation {}
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/SyntaxExpressibleByStringInterpolationConformances.swift:41:1: warning: extension declares a conformance of imported type 'ExprSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
39 | extension EnumCaseParameterSyntax: SyntaxExpressibleByStringInterpolation {}
40 |
41 | extension ExprSyntax: SyntaxExpressibleByStringInterpolation {}
   | |- warning: extension declares a conformance of imported type 'ExprSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
42 |
43 | extension FunctionParameterSyntax: SyntaxExpressibleByStringInterpolation {}
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/SyntaxExpressibleByStringInterpolationConformances.swift:43:1: warning: extension declares a conformance of imported type 'FunctionParameterSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
41 | extension ExprSyntax: SyntaxExpressibleByStringInterpolation {}
42 |
43 | extension FunctionParameterSyntax: SyntaxExpressibleByStringInterpolation {}
   | |- warning: extension declares a conformance of imported type 'FunctionParameterSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
44 |
45 | extension GenericParameterClauseSyntax: SyntaxExpressibleByStringInterpolation {}
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/SyntaxExpressibleByStringInterpolationConformances.swift:45:1: warning: extension declares a conformance of imported type 'GenericParameterClauseSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
43 | extension FunctionParameterSyntax: SyntaxExpressibleByStringInterpolation {}
44 |
45 | extension GenericParameterClauseSyntax: SyntaxExpressibleByStringInterpolation {}
   | |- warning: extension declares a conformance of imported type 'GenericParameterClauseSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
46 |
47 | extension MemberDeclBlockSyntax: SyntaxExpressibleByStringInterpolation {}
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/SyntaxExpressibleByStringInterpolationConformances.swift:47:1: warning: extension declares a conformance of imported type 'MemberDeclBlockSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
45 | extension GenericParameterClauseSyntax: SyntaxExpressibleByStringInterpolation {}
46 |
47 | extension MemberDeclBlockSyntax: SyntaxExpressibleByStringInterpolation {}
   | |- warning: extension declares a conformance of imported type 'MemberDeclBlockSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
48 |
49 | extension PatternSyntax: SyntaxExpressibleByStringInterpolation {}
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/SyntaxExpressibleByStringInterpolationConformances.swift:49:1: warning: extension declares a conformance of imported type 'PatternSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
47 | extension MemberDeclBlockSyntax: SyntaxExpressibleByStringInterpolation {}
48 |
49 | extension PatternSyntax: SyntaxExpressibleByStringInterpolation {}
   | |- warning: extension declares a conformance of imported type 'PatternSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
50 |
51 | extension SourceFileSyntax: SyntaxExpressibleByStringInterpolation {}
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/SyntaxExpressibleByStringInterpolationConformances.swift:51:1: warning: extension declares a conformance of imported type 'SourceFileSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
49 | extension PatternSyntax: SyntaxExpressibleByStringInterpolation {}
50 |
51 | extension SourceFileSyntax: SyntaxExpressibleByStringInterpolation {}
   | |- warning: extension declares a conformance of imported type 'SourceFileSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
52 |
53 | extension StmtSyntax: SyntaxExpressibleByStringInterpolation {}
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/SyntaxExpressibleByStringInterpolationConformances.swift:53:1: warning: extension declares a conformance of imported type 'StmtSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
51 | extension SourceFileSyntax: SyntaxExpressibleByStringInterpolation {}
52 |
53 | extension StmtSyntax: SyntaxExpressibleByStringInterpolation {}
   | |- warning: extension declares a conformance of imported type 'StmtSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
54 |
55 | extension SwitchCaseSyntax: SyntaxExpressibleByStringInterpolation {}
/host/spi-builder-workspace/Sources/SwiftSyntaxBuilder/generated/SyntaxExpressibleByStringInterpolationConformances.swift:55:1: warning: extension declares a conformance of imported type 'SwitchCaseSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
53 | extension StmtSyntax: SyntaxExpressibleByStringInterpolation {}
54 |
55 | extension SwitchCaseSyntax: SyntaxExpressibleByStringInterpolation {}
   | |- warning: extension declares a conformance of imported type 'SwitchCaseSyntax' to imported protocols 'ExpressibleByStringInterpolation', 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'SwiftSyntax' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
56 |
57 | extension TypeSyntax: SyntaxExpressibleByStringInterpolation {}
BUILD FAILURE 6.1 android