The Swift Package Index logo.Swift Package Index

Build Information

Failed to build swift-html-types, reference 0.1.2 (d7e975), with Swift 6.2 for Wasm on 31 Oct 2025 23:07:53 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4609320-1":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/finestructure/spi-images:wasm-6.2-latest swift build --swift-sdk wasm32-unknown-wasip1 2>&1

Build Log

========================================
RunAll
========================================
Builder version: 4.68.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/coenttb/swift-html-types.git
Reference: 0.1.2
Initialized empty Git repository in /host/spi-builder-workspace/.git/
hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: 	git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: 	git branch -m <name>
From https://github.com/coenttb/swift-html-types
 * tag               0.1.2      -> FETCH_HEAD
HEAD is now at d7e9759 ci: add --ignore-unparsable-files flag to swift-format workflow
Cloned https://github.com/coenttb/swift-html-types.git
Revision (git rev-parse @):
d7e975904465260ea32f2cf8fcccf167224b09a2
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/coenttb/swift-html-types.git at 0.1.2
========================================
Build
========================================
Selected platform:         wasm
Swift version:             6.2
Building package at path:  $PWD
https://github.com/coenttb/swift-html-types.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-1":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/finestructure/spi-images:wasm-6.2-latest swift build --swift-sdk wasm32-unknown-wasip1 2>&1
wasm-6.2-latest: Pulling from finestructure/spi-images
Digest: sha256:f6b6b9bdb5d5605d727da337418fc455cd8a0394d3a815b70631008c48829755
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:wasm-6.2-latest
warning: multiple Swift SDKs match target triple `wasm32-unknown-wasip1` and host triple x86_64-unknown-linux-gnu, selected one at /root/.swiftpm/swift-sdks/swift-6.2-RELEASE_wasm.artifactbundle/swift-6.2-RELEASE_wasm/wasm32-unknown-wasip1/embedded-swift-sdk.json
Building for debugging...
[0/7] Write sources
[6/7] Write swift-version-24593BA9C3E375BF.txt
error: emit-module command failed with exit code 1 (use -v to see invocation)
[8/9] Emitting module HTMLAttributeTypes
/host/spi-builder-workspace/Sources/HTMLAttributeTypes/Attributes/Accept.swift:77:36: error: 'StringLiteralType' is unavailable: unavailable in embedded Swift
 75 |
 76 | extension Accept: ExpressibleByStringLiteral {
 77 |   public init(stringLiteral value: StringLiteralType) {
    |                                    `- error: 'StringLiteralType' is unavailable: unavailable in embedded Swift
 78 |     self = .init(rawValue: value)
 79 |   }
Swift.StringLiteralType:2:18: note: 'StringLiteralType' has been explicitly marked unavailable here
1 | @_unavailableInEmbedded
2 | public typealias StringLiteralType = String
  |                  `- note: 'StringLiteralType' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/HTMLAttributeTypes/Attributes/AttributionSrc.swift:137:36: error: 'StringLiteralType' is unavailable: unavailable in embedded Swift
135 |   /// - Parameter value: URL or space-separated list of URLs where the
136 |   ///   Attribution-Reporting-Eligible header should be sent
137 |   public init(stringLiteral value: StringLiteralType) {
    |                                    `- error: 'StringLiteralType' is unavailable: unavailable in embedded Swift
138 |     self.init(value)
139 |   }
Swift.StringLiteralType:2:18: note: 'StringLiteralType' has been explicitly marked unavailable here
1 | @_unavailableInEmbedded
2 | public typealias StringLiteralType = String
  |                  `- note: 'StringLiteralType' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/HTMLAttributeTypes/Attributes/Download.swift:139:36: error: 'StringLiteralType' is unavailable: unavailable in embedded Swift
137 |   ///
138 |   /// - Parameter value: The suggested filename for the downloaded file
139 |   public init(stringLiteral value: StringLiteralType) {
    |                                    `- error: 'StringLiteralType' is unavailable: unavailable in embedded Swift
140 |     self.init(value)
141 |   }
Swift.StringLiteralType:2:18: note: 'StringLiteralType' has been explicitly marked unavailable here
1 | @_unavailableInEmbedded
2 | public typealias StringLiteralType = String
  |                  `- note: 'StringLiteralType' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/HTMLAttributeTypes/Attributes/High.swift:56:12: error: no exact matches in call to initializer
54 |   /// Returns the string representation of the attribute value
55 |   public var description: String {
56 |     return String(self.value)
   |            `- error: no exact matches in call to initializer
57 |   }
58 | }
Swift.String.init:2:8: note: incorrect labels for candidate (have: '(_:)', expected: '(describing:)')
1 | struct String {
2 | public init<Subject>(describing instance: Subject)}
  |        `- note: incorrect labels for candidate (have: '(_:)', expected: '(describing:)')
3 |
Swift.String.init:2:19: note: incorrect labels for candidate (have: '(_:)', expected: '(describing:)')
1 | struct String {
2 | @inlinable public init<Subject>(describing instance: Subject) where Subject : CustomStringConvertible}
  |                   `- note: incorrect labels for candidate (have: '(_:)', expected: '(describing:)')
3 |
Swift.String.init:2:19: note: incorrect labels for candidate (have: '(_:)', expected: '(describing:)')
1 | struct String {
2 | @inlinable public init<Subject>(describing instance: Subject) where Subject : TextOutputStreamable}
  |                   `- note: incorrect labels for candidate (have: '(_:)', expected: '(describing:)')
3 |
Swift.String.init:2:19: note: incorrect labels for candidate (have: '(_:)', expected: '(describing:)')
1 | struct String {
2 | @inlinable public init<Subject>(describing instance: Subject) where Subject : CustomStringConvertible, Subject : TextOutputStreamable}
  |                   `- note: incorrect labels for candidate (have: '(_:)', expected: '(describing:)')
3 |
Swift.String.init:2:8: note: incorrect labels for candidate (have: '(_:)', expected: '(reflecting:)')
1 | struct String {
2 | public init<Subject>(reflecting subject: Subject)}
  |        `- note: incorrect labels for candidate (have: '(_:)', expected: '(reflecting:)')
3 |
/host/spi-builder-workspace/Sources/HTMLAttributeTypes/Attributes/Low.swift:56:12: error: no exact matches in call to initializer
54 |   /// Returns the string representation of the attribute value
55 |   public var description: String {
56 |     return String(self.value)
   |            `- error: no exact matches in call to initializer
57 |   }
58 | }
Swift.String.init:2:8: note: incorrect labels for candidate (have: '(_:)', expected: '(describing:)')
1 | struct String {
2 | public init<Subject>(describing instance: Subject)}
  |        `- note: incorrect labels for candidate (have: '(_:)', expected: '(describing:)')
3 |
Swift.String.init:2:19: note: incorrect labels for candidate (have: '(_:)', expected: '(describing:)')
1 | struct String {
2 | @inlinable public init<Subject>(describing instance: Subject) where Subject : CustomStringConvertible}
  |                   `- note: incorrect labels for candidate (have: '(_:)', expected: '(describing:)')
3 |
Swift.String.init:2:19: note: incorrect labels for candidate (have: '(_:)', expected: '(describing:)')
1 | struct String {
2 | @inlinable public init<Subject>(describing instance: Subject) where Subject : TextOutputStreamable}
  |                   `- note: incorrect labels for candidate (have: '(_:)', expected: '(describing:)')
3 |
Swift.String.init:2:19: note: incorrect labels for candidate (have: '(_:)', expected: '(describing:)')
1 | struct String {
2 | @inlinable public init<Subject>(describing instance: Subject) where Subject : CustomStringConvertible, Subject : TextOutputStreamable}
  |                   `- note: incorrect labels for candidate (have: '(_:)', expected: '(describing:)')
3 |
Swift.String.init:2:8: note: incorrect labels for candidate (have: '(_:)', expected: '(reflecting:)')
1 | struct String {
2 | public init<Subject>(reflecting subject: Subject)}
  |        `- note: incorrect labels for candidate (have: '(_:)', expected: '(reflecting:)')
3 |
/host/spi-builder-workspace/Sources/HTMLAttributeTypes/Attributes/Max.swift:106:21: error: no exact matches in call to initializer
104 | extension Max: ExpressibleByFloatLiteral {
105 |   public init(floatLiteral value: FloatLiteralType) {
106 |     self.rawValue = String(value)
    |                     `- error: no exact matches in call to initializer
107 |   }
108 | }
Swift.String.init:2:8: note: incorrect labels for candidate (have: '(_:)', expected: '(describing:)')
1 | struct String {
2 | public init<Subject>(describing instance: Subject)}
  |        `- note: incorrect labels for candidate (have: '(_:)', expected: '(describing:)')
3 |
Swift.String.init:2:19: note: incorrect labels for candidate (have: '(_:)', expected: '(describing:)')
1 | struct String {
2 | @inlinable public init<Subject>(describing instance: Subject) where Subject : CustomStringConvertible}
  |                   `- note: incorrect labels for candidate (have: '(_:)', expected: '(describing:)')
3 |
Swift.String.init:2:19: note: incorrect labels for candidate (have: '(_:)', expected: '(describing:)')
1 | struct String {
2 | @inlinable public init<Subject>(describing instance: Subject) where Subject : TextOutputStreamable}
  |                   `- note: incorrect labels for candidate (have: '(_:)', expected: '(describing:)')
3 |
Swift.String.init:2:19: note: incorrect labels for candidate (have: '(_:)', expected: '(describing:)')
1 | struct String {
2 | @inlinable public init<Subject>(describing instance: Subject) where Subject : CustomStringConvertible, Subject : TextOutputStreamable}
  |                   `- note: incorrect labels for candidate (have: '(_:)', expected: '(describing:)')
3 |
Swift.String.init:2:8: note: incorrect labels for candidate (have: '(_:)', expected: '(reflecting:)')
1 | struct String {
2 | public init<Subject>(reflecting subject: Subject)}
  |        `- note: incorrect labels for candidate (have: '(_:)', expected: '(reflecting:)')
3 |
/host/spi-builder-workspace/Sources/HTMLAttributeTypes/Attributes/Min.swift:116:21: error: no exact matches in call to initializer
114 | extension Min: ExpressibleByFloatLiteral {
115 |   public init(floatLiteral value: FloatLiteralType) {
116 |     self.rawValue = String(value)
    |                     `- error: no exact matches in call to initializer
117 |   }
118 | }
Swift.String.init:2:8: note: incorrect labels for candidate (have: '(_:)', expected: '(describing:)')
1 | struct String {
2 | public init<Subject>(describing instance: Subject)}
  |        `- note: incorrect labels for candidate (have: '(_:)', expected: '(describing:)')
3 |
Swift.String.init:2:19: note: incorrect labels for candidate (have: '(_:)', expected: '(describing:)')
1 | struct String {
2 | @inlinable public init<Subject>(describing instance: Subject) where Subject : CustomStringConvertible}
  |                   `- note: incorrect labels for candidate (have: '(_:)', expected: '(describing:)')
3 |
Swift.String.init:2:19: note: incorrect labels for candidate (have: '(_:)', expected: '(describing:)')
1 | struct String {
2 | @inlinable public init<Subject>(describing instance: Subject) where Subject : TextOutputStreamable}
  |                   `- note: incorrect labels for candidate (have: '(_:)', expected: '(describing:)')
3 |
Swift.String.init:2:19: note: incorrect labels for candidate (have: '(_:)', expected: '(describing:)')
1 | struct String {
2 | @inlinable public init<Subject>(describing instance: Subject) where Subject : CustomStringConvertible, Subject : TextOutputStreamable}
  |                   `- note: incorrect labels for candidate (have: '(_:)', expected: '(describing:)')
3 |
Swift.String.init:2:8: note: incorrect labels for candidate (have: '(_:)', expected: '(reflecting:)')
1 | struct String {
2 | public init<Subject>(reflecting subject: Subject)}
  |        `- note: incorrect labels for candidate (have: '(_:)', expected: '(reflecting:)')
3 |
/host/spi-builder-workspace/Sources/HTMLAttributeTypes/Attributes/Optimum.swift:59:12: error: no exact matches in call to initializer
57 |   /// Returns the string representation of the attribute value
58 |   public var description: String {
59 |     return String(self.value)
   |            `- error: no exact matches in call to initializer
60 |   }
61 | }
Swift.String.init:2:8: note: incorrect labels for candidate (have: '(_:)', expected: '(describing:)')
1 | struct String {
2 | public init<Subject>(describing instance: Subject)}
  |        `- note: incorrect labels for candidate (have: '(_:)', expected: '(describing:)')
3 |
Swift.String.init:2:19: note: incorrect labels for candidate (have: '(_:)', expected: '(describing:)')
1 | struct String {
2 | @inlinable public init<Subject>(describing instance: Subject) where Subject : CustomStringConvertible}
  |                   `- note: incorrect labels for candidate (have: '(_:)', expected: '(describing:)')
3 |
Swift.String.init:2:19: note: incorrect labels for candidate (have: '(_:)', expected: '(describing:)')
1 | struct String {
2 | @inlinable public init<Subject>(describing instance: Subject) where Subject : TextOutputStreamable}
  |                   `- note: incorrect labels for candidate (have: '(_:)', expected: '(describing:)')
3 |
Swift.String.init:2:19: note: incorrect labels for candidate (have: '(_:)', expected: '(describing:)')
1 | struct String {
2 | @inlinable public init<Subject>(describing instance: Subject) where Subject : CustomStringConvertible, Subject : TextOutputStreamable}
  |                   `- note: incorrect labels for candidate (have: '(_:)', expected: '(describing:)')
3 |
Swift.String.init:2:8: note: incorrect labels for candidate (have: '(_:)', expected: '(reflecting:)')
1 | struct String {
2 | public init<Subject>(reflecting subject: Subject)}
  |        `- note: incorrect labels for candidate (have: '(_:)', expected: '(reflecting:)')
3 |
/host/spi-builder-workspace/Sources/HTMLAttributeTypes/Attributes/SourceType.swift:86:36: error: 'StringLiteralType' is unavailable: unavailable in embedded Swift
 84 |
 85 | extension SourceType: ExpressibleByStringLiteral {
 86 |   public init(stringLiteral value: StringLiteralType) {
    |                                    `- error: 'StringLiteralType' is unavailable: unavailable in embedded Swift
 87 |     self = .init(value)
 88 |   }
Swift.StringLiteralType:2:18: note: 'StringLiteralType' has been explicitly marked unavailable here
1 | @_unavailableInEmbedded
2 | public typealias StringLiteralType = String
  |                  `- note: 'StringLiteralType' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/HTMLAttributeTypes/Attributes/Step.swift:166:33: error: no exact matches in call to initializer
164 |     if value == "any" {
165 |       self = .any
166 |     } else if let doubleValue = Double(value) {
    |                                 `- error: no exact matches in call to initializer
167 |       self = .value(doubleValue)
168 |     } else {
Swift.Double.init:2:8: note: candidate expects value of type 'Builtin.FPIEEE64' for parameter #1 (got 'String')
1 | struct Double {
2 | public init(_ _value: Builtin.FPIEEE64)}
  |        `- note: candidate expects value of type 'Builtin.FPIEEE64' for parameter #1 (got 'String')
3 |
Swift.Double.init:2:8: note: candidate expects value of type 'Int' for parameter #1 (got 'String')
1 | struct Double {
2 | public init(_ v: Int)}
  |        `- note: candidate expects value of type 'Int' for parameter #1 (got 'String')
3 |
Swift.Double.init:3:21: note: candidate expects value of type 'Float16' for parameter #1 (got 'String')
1 | struct Double {
2 | @available(macOS 10.9, iOS 7.0, watchOS 2.0, tvOS 9.0, visionOS 1.0, *)
3 |   @inlinable public init(_ other: Float16)}
  |                     `- note: candidate expects value of type 'Float16' for parameter #1 (got 'String')
4 |
Swift.Double.init:2:19: note: candidate expects value of type 'Float' for parameter #1 (got 'String')
1 | struct Double {
2 | @inlinable public init(_ other: Float)}
  |                   `- note: candidate expects value of type 'Float' for parameter #1 (got 'String')
3 |
Swift.Double.init:2:19: note: candidate expects value of type 'Double' for parameter #1 (got 'String')
1 | struct Double {
2 | @inlinable public init(_ other: Double)}
  |                   `- note: candidate expects value of type 'Double' for parameter #1 (got 'String')
3 |
/host/spi-builder-workspace/Sources/HTMLAttributeTypes/Attributes/Target.swift:108:36: error: 'StringLiteralType' is unavailable: unavailable in embedded Swift
106 |
107 | extension Target: ExpressibleByStringLiteral {
108 |   public init(stringLiteral value: StringLiteralType) {
    |                                    `- error: 'StringLiteralType' is unavailable: unavailable in embedded Swift
109 |     self.init(value)
110 |   }
Swift.StringLiteralType:2:18: note: 'StringLiteralType' has been explicitly marked unavailable here
1 | @_unavailableInEmbedded
2 | public typealias StringLiteralType = String
  |                  `- note: 'StringLiteralType' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/HTMLAttributeTypes/Attributes/Usemap.swift:72:36: error: 'StringLiteralType' is unavailable: unavailable in embedded Swift
70 |
71 | extension Usemap: ExpressibleByStringLiteral {
72 |   public init(stringLiteral value: StringLiteralType) {
   |                                    `- error: 'StringLiteralType' is unavailable: unavailable in embedded Swift
73 |     self.init(value)
74 |   }
Swift.StringLiteralType:2:18: note: 'StringLiteralType' has been explicitly marked unavailable here
1 | @_unavailableInEmbedded
2 | public typealias StringLiteralType = String
  |                  `- note: 'StringLiteralType' has been explicitly marked unavailable here
[9/9] Compiling HTMLAttributeTypes Abbr.swift
/host/spi-builder-workspace/Sources/HTMLAttributeTypes/Attributes/Accept.swift:77:36: error: 'StringLiteralType' is unavailable: unavailable in embedded Swift
 75 |
 76 | extension Accept: ExpressibleByStringLiteral {
 77 |   public init(stringLiteral value: StringLiteralType) {
    |                                    `- error: 'StringLiteralType' is unavailable: unavailable in embedded Swift
 78 |     self = .init(rawValue: value)
 79 |   }
Swift.StringLiteralType:2:18: note: 'StringLiteralType' has been explicitly marked unavailable here
1 | @_unavailableInEmbedded
2 | public typealias StringLiteralType = String
  |                  `- note: 'StringLiteralType' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/HTMLAttributeTypes/Attributes/AttributionSrc.swift:137:36: error: 'StringLiteralType' is unavailable: unavailable in embedded Swift
135 |   /// - Parameter value: URL or space-separated list of URLs where the
136 |   ///   Attribution-Reporting-Eligible header should be sent
137 |   public init(stringLiteral value: StringLiteralType) {
    |                                    `- error: 'StringLiteralType' is unavailable: unavailable in embedded Swift
138 |     self.init(value)
139 |   }
Swift.StringLiteralType:2:18: note: 'StringLiteralType' has been explicitly marked unavailable here
1 | @_unavailableInEmbedded
2 | public typealias StringLiteralType = String
  |                  `- note: 'StringLiteralType' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/HTMLAttributeTypes/Attributes/Download.swift:139:36: error: 'StringLiteralType' is unavailable: unavailable in embedded Swift
137 |   ///
138 |   /// - Parameter value: The suggested filename for the downloaded file
139 |   public init(stringLiteral value: StringLiteralType) {
    |                                    `- error: 'StringLiteralType' is unavailable: unavailable in embedded Swift
140 |     self.init(value)
141 |   }
Swift.StringLiteralType:2:18: note: 'StringLiteralType' has been explicitly marked unavailable here
1 | @_unavailableInEmbedded
2 | public typealias StringLiteralType = String
  |                  `- note: 'StringLiteralType' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/HTMLAttributeTypes/Attributes/High.swift:56:12: error: no exact matches in call to initializer
54 |   /// Returns the string representation of the attribute value
55 |   public var description: String {
56 |     return String(self.value)
   |            `- error: no exact matches in call to initializer
57 |   }
58 | }
Swift.String.init:2:8: note: incorrect labels for candidate (have: '(_:)', expected: '(describing:)')
1 | struct String {
2 | public init<Subject>(describing instance: Subject)}
  |        `- note: incorrect labels for candidate (have: '(_:)', expected: '(describing:)')
3 |
Swift.String.init:2:19: note: incorrect labels for candidate (have: '(_:)', expected: '(describing:)')
1 | struct String {
2 | @inlinable public init<Subject>(describing instance: Subject) where Subject : CustomStringConvertible}
  |                   `- note: incorrect labels for candidate (have: '(_:)', expected: '(describing:)')
3 |
Swift.String.init:2:19: note: incorrect labels for candidate (have: '(_:)', expected: '(describing:)')
1 | struct String {
2 | @inlinable public init<Subject>(describing instance: Subject) where Subject : TextOutputStreamable}
  |                   `- note: incorrect labels for candidate (have: '(_:)', expected: '(describing:)')
3 |
Swift.String.init:2:19: note: incorrect labels for candidate (have: '(_:)', expected: '(describing:)')
1 | struct String {
2 | @inlinable public init<Subject>(describing instance: Subject) where Subject : CustomStringConvertible, Subject : TextOutputStreamable}
  |                   `- note: incorrect labels for candidate (have: '(_:)', expected: '(describing:)')
3 |
Swift.String.init:2:8: note: incorrect labels for candidate (have: '(_:)', expected: '(reflecting:)')
1 | struct String {
2 | public init<Subject>(reflecting subject: Subject)}
  |        `- note: incorrect labels for candidate (have: '(_:)', expected: '(reflecting:)')
3 |
/host/spi-builder-workspace/Sources/HTMLAttributeTypes/Attributes/Low.swift:56:12: error: no exact matches in call to initializer
54 |   /// Returns the string representation of the attribute value
55 |   public var description: String {
56 |     return String(self.value)
   |            `- error: no exact matches in call to initializer
57 |   }
58 | }
Swift.String.init:2:8: note: incorrect labels for candidate (have: '(_:)', expected: '(describing:)')
1 | struct String {
2 | public init<Subject>(describing instance: Subject)}
  |        `- note: incorrect labels for candidate (have: '(_:)', expected: '(describing:)')
3 |
Swift.String.init:2:19: note: incorrect labels for candidate (have: '(_:)', expected: '(describing:)')
1 | struct String {
2 | @inlinable public init<Subject>(describing instance: Subject) where Subject : CustomStringConvertible}
  |                   `- note: incorrect labels for candidate (have: '(_:)', expected: '(describing:)')
3 |
Swift.String.init:2:19: note: incorrect labels for candidate (have: '(_:)', expected: '(describing:)')
1 | struct String {
2 | @inlinable public init<Subject>(describing instance: Subject) where Subject : TextOutputStreamable}
  |                   `- note: incorrect labels for candidate (have: '(_:)', expected: '(describing:)')
3 |
Swift.String.init:2:19: note: incorrect labels for candidate (have: '(_:)', expected: '(describing:)')
1 | struct String {
2 | @inlinable public init<Subject>(describing instance: Subject) where Subject : CustomStringConvertible, Subject : TextOutputStreamable}
  |                   `- note: incorrect labels for candidate (have: '(_:)', expected: '(describing:)')
3 |
Swift.String.init:2:8: note: incorrect labels for candidate (have: '(_:)', expected: '(reflecting:)')
1 | struct String {
2 | public init<Subject>(reflecting subject: Subject)}
  |        `- note: incorrect labels for candidate (have: '(_:)', expected: '(reflecting:)')
3 |
/host/spi-builder-workspace/Sources/HTMLAttributeTypes/Attributes/Max.swift:106:21: error: no exact matches in call to initializer
104 | extension Max: ExpressibleByFloatLiteral {
105 |   public init(floatLiteral value: FloatLiteralType) {
106 |     self.rawValue = String(value)
    |                     `- error: no exact matches in call to initializer
107 |   }
108 | }
Swift.String.init:2:8: note: incorrect labels for candidate (have: '(_:)', expected: '(describing:)')
1 | struct String {
2 | public init<Subject>(describing instance: Subject)}
  |        `- note: incorrect labels for candidate (have: '(_:)', expected: '(describing:)')
3 |
Swift.String.init:2:19: note: incorrect labels for candidate (have: '(_:)', expected: '(describing:)')
1 | struct String {
2 | @inlinable public init<Subject>(describing instance: Subject) where Subject : CustomStringConvertible}
  |                   `- note: incorrect labels for candidate (have: '(_:)', expected: '(describing:)')
3 |
Swift.String.init:2:19: note: incorrect labels for candidate (have: '(_:)', expected: '(describing:)')
1 | struct String {
2 | @inlinable public init<Subject>(describing instance: Subject) where Subject : TextOutputStreamable}
  |                   `- note: incorrect labels for candidate (have: '(_:)', expected: '(describing:)')
3 |
Swift.String.init:2:19: note: incorrect labels for candidate (have: '(_:)', expected: '(describing:)')
1 | struct String {
2 | @inlinable public init<Subject>(describing instance: Subject) where Subject : CustomStringConvertible, Subject : TextOutputStreamable}
  |                   `- note: incorrect labels for candidate (have: '(_:)', expected: '(describing:)')
3 |
Swift.String.init:2:8: note: incorrect labels for candidate (have: '(_:)', expected: '(reflecting:)')
1 | struct String {
2 | public init<Subject>(reflecting subject: Subject)}
  |        `- note: incorrect labels for candidate (have: '(_:)', expected: '(reflecting:)')
3 |
/host/spi-builder-workspace/Sources/HTMLAttributeTypes/Attributes/Min.swift:116:21: error: no exact matches in call to initializer
114 | extension Min: ExpressibleByFloatLiteral {
115 |   public init(floatLiteral value: FloatLiteralType) {
116 |     self.rawValue = String(value)
    |                     `- error: no exact matches in call to initializer
117 |   }
118 | }
Swift.String.init:2:8: note: incorrect labels for candidate (have: '(_:)', expected: '(describing:)')
1 | struct String {
2 | public init<Subject>(describing instance: Subject)}
  |        `- note: incorrect labels for candidate (have: '(_:)', expected: '(describing:)')
3 |
Swift.String.init:2:19: note: incorrect labels for candidate (have: '(_:)', expected: '(describing:)')
1 | struct String {
2 | @inlinable public init<Subject>(describing instance: Subject) where Subject : CustomStringConvertible}
  |                   `- note: incorrect labels for candidate (have: '(_:)', expected: '(describing:)')
3 |
Swift.String.init:2:19: note: incorrect labels for candidate (have: '(_:)', expected: '(describing:)')
1 | struct String {
2 | @inlinable public init<Subject>(describing instance: Subject) where Subject : TextOutputStreamable}
  |                   `- note: incorrect labels for candidate (have: '(_:)', expected: '(describing:)')
3 |
Swift.String.init:2:19: note: incorrect labels for candidate (have: '(_:)', expected: '(describing:)')
1 | struct String {
2 | @inlinable public init<Subject>(describing instance: Subject) where Subject : CustomStringConvertible, Subject : TextOutputStreamable}
  |                   `- note: incorrect labels for candidate (have: '(_:)', expected: '(describing:)')
3 |
Swift.String.init:2:8: note: incorrect labels for candidate (have: '(_:)', expected: '(reflecting:)')
1 | struct String {
2 | public init<Subject>(reflecting subject: Subject)}
  |        `- note: incorrect labels for candidate (have: '(_:)', expected: '(reflecting:)')
3 |
/host/spi-builder-workspace/Sources/HTMLAttributeTypes/Attributes/Optimum.swift:59:12: error: no exact matches in call to initializer
57 |   /// Returns the string representation of the attribute value
58 |   public var description: String {
59 |     return String(self.value)
   |            `- error: no exact matches in call to initializer
60 |   }
61 | }
Swift.String.init:2:8: note: incorrect labels for candidate (have: '(_:)', expected: '(describing:)')
1 | struct String {
2 | public init<Subject>(describing instance: Subject)}
  |        `- note: incorrect labels for candidate (have: '(_:)', expected: '(describing:)')
3 |
Swift.String.init:2:19: note: incorrect labels for candidate (have: '(_:)', expected: '(describing:)')
1 | struct String {
2 | @inlinable public init<Subject>(describing instance: Subject) where Subject : CustomStringConvertible}
  |                   `- note: incorrect labels for candidate (have: '(_:)', expected: '(describing:)')
3 |
Swift.String.init:2:19: note: incorrect labels for candidate (have: '(_:)', expected: '(describing:)')
1 | struct String {
2 | @inlinable public init<Subject>(describing instance: Subject) where Subject : TextOutputStreamable}
  |                   `- note: incorrect labels for candidate (have: '(_:)', expected: '(describing:)')
3 |
Swift.String.init:2:19: note: incorrect labels for candidate (have: '(_:)', expected: '(describing:)')
1 | struct String {
2 | @inlinable public init<Subject>(describing instance: Subject) where Subject : CustomStringConvertible, Subject : TextOutputStreamable}
  |                   `- note: incorrect labels for candidate (have: '(_:)', expected: '(describing:)')
3 |
Swift.String.init:2:8: note: incorrect labels for candidate (have: '(_:)', expected: '(reflecting:)')
1 | struct String {
2 | public init<Subject>(reflecting subject: Subject)}
  |        `- note: incorrect labels for candidate (have: '(_:)', expected: '(reflecting:)')
3 |
/host/spi-builder-workspace/Sources/HTMLAttributeTypes/Attributes/SourceType.swift:86:36: error: 'StringLiteralType' is unavailable: unavailable in embedded Swift
 84 |
 85 | extension SourceType: ExpressibleByStringLiteral {
 86 |   public init(stringLiteral value: StringLiteralType) {
    |                                    `- error: 'StringLiteralType' is unavailable: unavailable in embedded Swift
 87 |     self = .init(value)
 88 |   }
Swift.StringLiteralType:2:18: note: 'StringLiteralType' has been explicitly marked unavailable here
1 | @_unavailableInEmbedded
2 | public typealias StringLiteralType = String
  |                  `- note: 'StringLiteralType' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/HTMLAttributeTypes/Attributes/Step.swift:166:33: error: no exact matches in call to initializer
164 |     if value == "any" {
165 |       self = .any
166 |     } else if let doubleValue = Double(value) {
    |                                 `- error: no exact matches in call to initializer
167 |       self = .value(doubleValue)
168 |     } else {
Swift.Double.init:2:8: note: candidate expects value of type 'Builtin.FPIEEE64' for parameter #1 (got 'String')
1 | struct Double {
2 | public init(_ _value: Builtin.FPIEEE64)}
  |        `- note: candidate expects value of type 'Builtin.FPIEEE64' for parameter #1 (got 'String')
3 |
Swift.Double.init:2:8: note: candidate expects value of type 'Int' for parameter #1 (got 'String')
1 | struct Double {
2 | public init(_ v: Int)}
  |        `- note: candidate expects value of type 'Int' for parameter #1 (got 'String')
3 |
Swift.Double.init:3:21: note: candidate expects value of type 'Float16' for parameter #1 (got 'String')
1 | struct Double {
2 | @available(macOS 10.9, iOS 7.0, watchOS 2.0, tvOS 9.0, visionOS 1.0, *)
3 |   @inlinable public init(_ other: Float16)}
  |                     `- note: candidate expects value of type 'Float16' for parameter #1 (got 'String')
4 |
Swift.Double.init:2:19: note: candidate expects value of type 'Float' for parameter #1 (got 'String')
1 | struct Double {
2 | @inlinable public init(_ other: Float)}
  |                   `- note: candidate expects value of type 'Float' for parameter #1 (got 'String')
3 |
Swift.Double.init:2:19: note: candidate expects value of type 'Double' for parameter #1 (got 'String')
1 | struct Double {
2 | @inlinable public init(_ other: Double)}
  |                   `- note: candidate expects value of type 'Double' for parameter #1 (got 'String')
3 |
/host/spi-builder-workspace/Sources/HTMLAttributeTypes/Attributes/Target.swift:108:36: error: 'StringLiteralType' is unavailable: unavailable in embedded Swift
106 |
107 | extension Target: ExpressibleByStringLiteral {
108 |   public init(stringLiteral value: StringLiteralType) {
    |                                    `- error: 'StringLiteralType' is unavailable: unavailable in embedded Swift
109 |     self.init(value)
110 |   }
Swift.StringLiteralType:2:18: note: 'StringLiteralType' has been explicitly marked unavailable here
1 | @_unavailableInEmbedded
2 | public typealias StringLiteralType = String
  |                  `- note: 'StringLiteralType' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/HTMLAttributeTypes/Attributes/Usemap.swift:72:36: error: 'StringLiteralType' is unavailable: unavailable in embedded Swift
70 |
71 | extension Usemap: ExpressibleByStringLiteral {
72 |   public init(stringLiteral value: StringLiteralType) {
   |                                    `- error: 'StringLiteralType' is unavailable: unavailable in embedded Swift
73 |     self.init(value)
74 |   }
Swift.StringLiteralType:2:18: note: 'StringLiteralType' has been explicitly marked unavailable here
1 | @_unavailableInEmbedded
2 | public typealias StringLiteralType = String
  |                  `- note: 'StringLiteralType' has been explicitly marked unavailable here
BUILD FAILURE 6.2 wasm