The Swift Package Index logo.Swift Package Index

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

Build Information

Successful build of YMatterType, reference 1.7.0 (3a9f8d), with Swift 6.1 for tvOS using Xcode 16.3 on 27 Apr 2025 22:15:52 UTC.

Swift 6 data race errors: 20

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme YMatterType -destination generic/platform=tvOS OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures

Build Log

                        ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextFieldTests.swift:191:13: warning: main actor-isolated property 'text' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
        sut.text = nil
            ^
/Users/admin/builder/spi-builder-workspace/Sources/YMatterType/Elements/TypographyTextField.swift:102:25: note: mutation of this property is only permitted within the actor
    override public var text: String! {
                        ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextFieldTests.swift:181:10: note: add '@MainActor' to make instance method 'testSetText()' part of global actor 'MainActor'
    func testSetText() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextFieldTests.swift:194:27: warning: main actor-isolated property 'text' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertTrue(sut.text.isEmpty)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/YMatterType/Elements/TypographyTextField.swift:102:25: note: property declared here
    override public var text: String! {
                        ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextFieldTests.swift:195:28: warning: main actor-isolated property 'attributedText' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertTrue((sut.attributedText?.string ?? "").isEmpty)
                           ^
/Users/admin/builder/spi-builder-workspace/Sources/YMatterType/Elements/TypographyTextField.swift:113:25: note: property declared here
    override public var attributedText: NSAttributedString? {
                        ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextFieldTests.swift:201:13: warning: main actor-isolated property 'attributedText' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
        sut.attributedText = NSAttributedString(
            ^
/Users/admin/builder/spi-builder-workspace/Sources/YMatterType/Elements/TypographyTextField.swift:113:25: note: mutation of this property is only permitted within the actor
    override public var attributedText: NSAttributedString? {
                        ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextFieldTests.swift:198:10: note: add '@MainActor' to make instance method 'testAttributedText()' part of global actor 'MainActor'
    func testAttributedText() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextFieldTests.swift:207:28: warning: main actor-isolated property 'text' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertFalse(sut.text.isEmpty)
                           ^
/Users/admin/builder/spi-builder-workspace/Sources/YMatterType/Elements/TypographyTextField.swift:102:25: note: property declared here
    override public var text: String! {
                        ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextFieldTests.swift:208:29: warning: main actor-isolated property 'attributedText' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertFalse((sut.attributedText?.string ?? "").isEmpty)
                            ^
/Users/admin/builder/spi-builder-workspace/Sources/YMatterType/Elements/TypographyTextField.swift:113:25: note: property declared here
    override public var attributedText: NSAttributedString? {
                        ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextFieldTests.swift:210:13: warning: call to main actor-isolated instance method 'layoutIfNeeded()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        sut.layoutIfNeeded()
            ^
UIKit.UIView.layoutIfNeeded:2:22: note: calls to instance method 'layoutIfNeeded()' from outside of its actor context are implicitly asynchronous
@MainActor open func layoutIfNeeded()}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextFieldTests.swift:198:10: note: add '@MainActor' to make instance method 'testAttributedText()' part of global actor 'MainActor'
    func testAttributedText() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextFieldTests.swift:211:28: warning: main actor-isolated property 'intrinsicContentSize' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertEqual(sut.intrinsicContentSize.height, sut.typography.lineHeight)
                           ^
/Users/admin/builder/spi-builder-workspace/Sources/YMatterType/Elements/TypographyTextField.swift:167:23: note: property declared here
    open override var intrinsicContentSize: CGSize {
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextFieldTests.swift:211:61: warning: main actor-isolated property 'typography' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertEqual(sut.intrinsicContentSize.height, sut.typography.lineHeight)
                                                            ^
/Users/admin/builder/spi-builder-workspace/Sources/YMatterType/Elements/TypographyTextField.swift:22:16: note: property declared here
    public var typography: Typography {
               ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextFieldTests.swift:215:13: warning: main actor-isolated property 'typography' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
        sut.typography = Typography(
            ^
/Users/admin/builder/spi-builder-workspace/Sources/YMatterType/Elements/TypographyTextField.swift:22:16: note: mutation of this property is only permitted within the actor
    public var typography: Typography {
               ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextFieldTests.swift:198:10: note: add '@MainActor' to make instance method 'testAttributedText()' part of global actor 'MainActor'
    func testAttributedText() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextFieldTests.swift:223:29: warning: main actor-isolated property 'attributedText' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertNotNil(sut.attributedText)
                            ^
/Users/admin/builder/spi-builder-workspace/Sources/YMatterType/Elements/TypographyTextField.swift:113:25: note: property declared here
    override public var attributedText: NSAttributedString? {
                        ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextFieldTests.swift:225:27: warning: main actor-isolated property 'attributedText' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertTrue(sut.attributedText?.hasUniversalAttribute(key: .strikethroughStyle) ?? false)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/YMatterType/Elements/TypographyTextField.swift:113:25: note: property declared here
    override public var attributedText: NSAttributedString? {
                        ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextFieldTests.swift:227:13: warning: call to main actor-isolated instance method 'layoutIfNeeded()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        sut.layoutIfNeeded()
            ^
UIKit.UIView.layoutIfNeeded:2:22: note: calls to instance method 'layoutIfNeeded()' from outside of its actor context are implicitly asynchronous
@MainActor open func layoutIfNeeded()}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextFieldTests.swift:198:10: note: add '@MainActor' to make instance method 'testAttributedText()' part of global actor 'MainActor'
    func testAttributedText() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextFieldTests.swift:228:28: warning: main actor-isolated property 'intrinsicContentSize' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertEqual(sut.intrinsicContentSize.height, sut.typography.lineHeight)
                           ^
/Users/admin/builder/spi-builder-workspace/Sources/YMatterType/Elements/TypographyTextField.swift:167:23: note: property declared here
    open override var intrinsicContentSize: CGSize {
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextFieldTests.swift:228:61: warning: main actor-isolated property 'typography' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertEqual(sut.intrinsicContentSize.height, sut.typography.lineHeight)
                                                            ^
/Users/admin/builder/spi-builder-workspace/Sources/YMatterType/Elements/TypographyTextField.swift:22:16: note: property declared here
    public var typography: Typography {
               ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextFieldTests.swift:231:13: warning: main actor-isolated property 'attributedText' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
        sut.attributedText = nil
            ^
/Users/admin/builder/spi-builder-workspace/Sources/YMatterType/Elements/TypographyTextField.swift:113:25: note: mutation of this property is only permitted within the actor
    override public var attributedText: NSAttributedString? {
                        ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextFieldTests.swift:198:10: note: add '@MainActor' to make instance method 'testAttributedText()' part of global actor 'MainActor'
    func testAttributedText() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextFieldTests.swift:234:27: warning: main actor-isolated property 'text' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertTrue(sut.text.isEmpty)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/YMatterType/Elements/TypographyTextField.swift:102:25: note: property declared here
    override public var text: String! {
                        ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextFieldTests.swift:235:28: warning: main actor-isolated property 'attributedText' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertTrue((sut.attributedText?.string ?? "").isEmpty)
                           ^
/Users/admin/builder/spi-builder-workspace/Sources/YMatterType/Elements/TypographyTextField.swift:113:25: note: property declared here
    override public var attributedText: NSAttributedString? {
                        ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextFieldTests.swift:244:13: warning: main actor-isolated property 'text' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
        sut.text = "John"
            ^
/Users/admin/builder/spi-builder-workspace/Sources/YMatterType/Elements/TypographyTextField.swift:102:25: note: mutation of this property is only permitted within the actor
    override public var text: String! {
                        ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextFieldTests.swift:238:10: note: add '@MainActor' to make instance method 'testTextInsets()' part of global actor 'MainActor'
    func testTextInsets() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextFieldTests.swift:247:28: warning: main actor-isolated property 'textInsets' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertEqual(sut.textInsets, TypographyTextField.defaultTextInsets)
                           ^
/Users/admin/builder/spi-builder-workspace/Sources/YMatterType/Elements/TypographyTextField.swift:38:16: note: property declared here
    public var textInsets: UIEdgeInsets = TypographyTextField.defaultTextInsets {
               ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextFieldTests.swift:247:60: warning: main actor-isolated class property 'defaultTextInsets' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertEqual(sut.textInsets, TypographyTextField.defaultTextInsets)
                                                           ^
/Users/admin/builder/spi-builder-workspace/Sources/YMatterType/Elements/TypographyTextField.swift:29:23: note: class property declared here
    public static var defaultTextInsets: UIEdgeInsets = {
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextFieldTests.swift:248:28: warning: main actor-isolated property 'intrinsicContentSize' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertEqual(sut.intrinsicContentSize.height, sut.typography.lineHeight)
                           ^
/Users/admin/builder/spi-builder-workspace/Sources/YMatterType/Elements/TypographyTextField.swift:167:23: note: property declared here
    open override var intrinsicContentSize: CGSize {
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextFieldTests.swift:248:61: warning: main actor-isolated property 'typography' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertEqual(sut.intrinsicContentSize.height, sut.typography.lineHeight)
                                                            ^
/Users/admin/builder/spi-builder-workspace/Sources/YMatterType/Elements/TypographyTextField.swift:22:16: note: property declared here
    public var typography: Typography {
               ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextFieldTests.swift:258:17: warning: main actor-isolated property 'textInsets' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
            sut.textInsets = insets
                ^
/Users/admin/builder/spi-builder-workspace/Sources/YMatterType/Elements/TypographyTextField.swift:38:16: note: mutation of this property is only permitted within the actor
    public var textInsets: UIEdgeInsets = TypographyTextField.defaultTextInsets {
               ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextFieldTests.swift:259:32: warning: main actor-isolated property 'intrinsicContentSize' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
            XCTAssertEqual(sut.intrinsicContentSize.height, sut.typography.lineHeight + insets.top + insets.bottom)
                               ^
/Users/admin/builder/spi-builder-workspace/Sources/YMatterType/Elements/TypographyTextField.swift:167:23: note: property declared here
    open override var intrinsicContentSize: CGSize {
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextFieldTests.swift:259:65: warning: main actor-isolated property 'typography' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
            XCTAssertEqual(sut.intrinsicContentSize.height, sut.typography.lineHeight + insets.top + insets.bottom)
                                                                ^
/Users/admin/builder/spi-builder-workspace/Sources/YMatterType/Elements/TypographyTextField.swift:22:16: note: property declared here
    public var typography: Typography {
               ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextFieldTests.swift:261:69: warning: main actor-isolated property 'typography' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
            let bounds = CGRect(x: 0, y: 0, width: 320, height: sut.typography.lineHeight + insets.top + insets.bottom)
                                                                    ^
/Users/admin/builder/spi-builder-workspace/Sources/YMatterType/Elements/TypographyTextField.swift:22:16: note: property declared here
    public var typography: Typography {
               ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextFieldTests.swift:263:32: warning: call to main actor-isolated instance method 'textRect(forBounds:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            XCTAssertEqual(sut.textRect(forBounds: bounds), insetBounds)
                               ^
/Users/admin/builder/spi-builder-workspace/Sources/YMatterType/Elements/TypographyTextField.swift:177:24: note: calls to instance method 'textRect(forBounds:)' from outside of its actor context are implicitly asynchronous
    open override func textRect(forBounds bounds: CGRect) -> CGRect {
                       ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextFieldTests.swift:264:32: warning: call to main actor-isolated instance method 'editingRect(forBounds:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            XCTAssertEqual(sut.editingRect(forBounds: bounds), insetBounds)
                               ^
/Users/admin/builder/spi-builder-workspace/Sources/YMatterType/Elements/TypographyTextField.swift:186:24: note: calls to instance method 'editingRect(forBounds:)' from outside of its actor context are implicitly asynchronous
    open override func editingRect(forBounds bounds: CGRect) -> CGRect {
                       ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextFieldTests.swift:265:32: warning: call to main actor-isolated instance method 'leftViewRect(forBounds:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            XCTAssertEqual(sut.leftViewRect(forBounds: bounds).minX, insetBounds.minX)
                               ^
/Users/admin/builder/spi-builder-workspace/Sources/YMatterType/Elements/TypographyTextField.swift:200:24: note: calls to instance method 'leftViewRect(forBounds:)' from outside of its actor context are implicitly asynchronous
    open override func leftViewRect(forBounds bounds: CGRect) -> CGRect {
                       ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextFieldTests.swift:266:32: warning: call to main actor-isolated instance method 'rightViewRect(forBounds:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            XCTAssertEqual(sut.rightViewRect(forBounds: bounds).maxX, insetBounds.maxX)
                               ^
/Users/admin/builder/spi-builder-workspace/Sources/YMatterType/Elements/TypographyTextField.swift:205:24: note: calls to instance method 'rightViewRect(forBounds:)' from outside of its actor context are implicitly asynchronous
    open override func rightViewRect(forBounds bounds: CGRect) -> CGRect {
                       ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextFieldTests.swift:267:32: warning: call to main actor-isolated instance method 'clearButtonRect(forBounds:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            XCTAssertEqual(sut.clearButtonRect(forBounds: bounds).maxX, insetBounds.maxX - 5)
                               ^
/Users/admin/builder/spi-builder-workspace/Sources/YMatterType/Elements/TypographyTextField.swift:195:24: note: calls to instance method 'clearButtonRect(forBounds:)' from outside of its actor context are implicitly asynchronous
    open override func clearButtonRect(forBounds bounds: CGRect) -> CGRect {
                       ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextFieldTests.swift:273:13: warning: main actor-isolated property 'text' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
        sut.text = "First name"
            ^
/Users/admin/builder/spi-builder-workspace/Sources/YMatterType/Elements/TypographyTextField.swift:102:25: note: mutation of this property is only permitted within the actor
    override public var text: String! {
                        ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextFieldTests.swift:271:10: note: add '@MainActor' to make instance method 'testTextCase()' part of global actor 'MainActor'
    func testTextCase() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextFieldTests.swift:276:28: warning: main actor-isolated property 'typography' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertEqual(sut.typography.textCase, .none)
                           ^
/Users/admin/builder/spi-builder-workspace/Sources/YMatterType/Elements/TypographyTextField.swift:22:16: note: property declared here
    public var typography: Typography {
               ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextFieldTests.swift:277:28: warning: main actor-isolated property 'text' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertEqual(sut.text, "First name")
                           ^
/Users/admin/builder/spi-builder-workspace/Sources/YMatterType/Elements/TypographyTextField.swift:102:25: note: property declared here
    override public var text: String! {
                        ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextFieldTests.swift:280:13: warning: main actor-isolated property 'typography' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
        sut.typography = sut.typography.textCase(.lowercase)
            ^
/Users/admin/builder/spi-builder-workspace/Sources/YMatterType/Elements/TypographyTextField.swift:22:16: note: mutation of this property is only permitted within the actor
    public var typography: Typography {
               ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextFieldTests.swift:271:10: note: add '@MainActor' to make instance method 'testTextCase()' part of global actor 'MainActor'
    func testTextCase() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextFieldTests.swift:280:30: warning: main actor-isolated property 'typography' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
        sut.typography = sut.typography.textCase(.lowercase)
                             ^
/Users/admin/builder/spi-builder-workspace/Sources/YMatterType/Elements/TypographyTextField.swift:22:16: note: property declared here
    public var typography: Typography {
               ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextFieldTests.swift:271:10: note: add '@MainActor' to make instance method 'testTextCase()' part of global actor 'MainActor'
    func testTextCase() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextFieldTests.swift:281:28: warning: main actor-isolated property 'text' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertEqual(sut.text, "first name")
                           ^
/Users/admin/builder/spi-builder-workspace/Sources/YMatterType/Elements/TypographyTextField.swift:102:25: note: property declared here
    override public var text: String! {
                        ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextFieldTests.swift:283:13: warning: main actor-isolated property 'typography' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
        sut.typography = sut.typography.textCase(.uppercase)
            ^
/Users/admin/builder/spi-builder-workspace/Sources/YMatterType/Elements/TypographyTextField.swift:22:16: note: mutation of this property is only permitted within the actor
    public var typography: Typography {
               ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextFieldTests.swift:271:10: note: add '@MainActor' to make instance method 'testTextCase()' part of global actor 'MainActor'
    func testTextCase() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextFieldTests.swift:283:30: warning: main actor-isolated property 'typography' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
        sut.typography = sut.typography.textCase(.uppercase)
                             ^
/Users/admin/builder/spi-builder-workspace/Sources/YMatterType/Elements/TypographyTextField.swift:22:16: note: property declared here
    public var typography: Typography {
               ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextFieldTests.swift:271:10: note: add '@MainActor' to make instance method 'testTextCase()' part of global actor 'MainActor'
    func testTextCase() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextFieldTests.swift:284:28: warning: main actor-isolated property 'text' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertEqual(sut.text, "FIRST NAME")
                           ^
/Users/admin/builder/spi-builder-workspace/Sources/YMatterType/Elements/TypographyTextField.swift:102:25: note: property declared here
    override public var text: String! {
                        ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextFieldTests.swift:286:13: warning: main actor-isolated property 'typography' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
        sut.typography = sut.typography.textCase(.capitalize)
            ^
/Users/admin/builder/spi-builder-workspace/Sources/YMatterType/Elements/TypographyTextField.swift:22:16: note: mutation of this property is only permitted within the actor
    public var typography: Typography {
               ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextFieldTests.swift:271:10: note: add '@MainActor' to make instance method 'testTextCase()' part of global actor 'MainActor'
    func testTextCase() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextFieldTests.swift:286:30: warning: main actor-isolated property 'typography' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
        sut.typography = sut.typography.textCase(.capitalize)
                             ^
/Users/admin/builder/spi-builder-workspace/Sources/YMatterType/Elements/TypographyTextField.swift:22:16: note: property declared here
    public var typography: Typography {
               ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextFieldTests.swift:271:10: note: add '@MainActor' to make instance method 'testTextCase()' part of global actor 'MainActor'
    func testTextCase() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextFieldTests.swift:287:28: warning: main actor-isolated property 'text' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertEqual(sut.text, "First Name")
                           ^
/Users/admin/builder/spi-builder-workspace/Sources/YMatterType/Elements/TypographyTextField.swift:102:25: note: property declared here
    override public var text: String! {
                        ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextFieldTests.swift:290:13: warning: main actor-isolated property 'text' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
        sut.text = "john"
            ^
/Users/admin/builder/spi-builder-workspace/Sources/YMatterType/Elements/TypographyTextField.swift:102:25: note: mutation of this property is only permitted within the actor
    override public var text: String! {
                        ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextFieldTests.swift:271:10: note: add '@MainActor' to make instance method 'testTextCase()' part of global actor 'MainActor'
    func testTextCase() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextFieldTests.swift:291:28: warning: main actor-isolated property 'text' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertEqual(sut.text, "John")
                           ^
/Users/admin/builder/spi-builder-workspace/Sources/YMatterType/Elements/TypographyTextField.swift:102:25: note: property declared here
    override public var text: String! {
                        ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextFieldTests.swift:294:13: warning: main actor-isolated property 'attributedText' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
        sut.attributedText = NSAttributedString(string: "first name", attributes: [.underlineStyle: 1])
            ^
/Users/admin/builder/spi-builder-workspace/Sources/YMatterType/Elements/TypographyTextField.swift:113:25: note: mutation of this property is only permitted within the actor
    override public var attributedText: NSAttributedString? {
                        ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextFieldTests.swift:271:10: note: add '@MainActor' to make instance method 'testTextCase()' part of global actor 'MainActor'
    func testTextCase() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextFieldTests.swift:295:28: warning: main actor-isolated property 'attributedText' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertEqual(sut.attributedText?.string, "First Name")
                           ^
/Users/admin/builder/spi-builder-workspace/Sources/YMatterType/Elements/TypographyTextField.swift:113:25: note: property declared here
    override public var attributedText: NSAttributedString? {
                        ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextFieldTests.swift:309:19: warning: call to main actor-isolated initializer 'init(typography:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        let sut = MockTextField(typography: typography)
                  ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/Mocks/MockTextField.swift:12:48: note: calls to initializer 'init(typography:)' from outside of its actor context are implicitly asynchronous
final class MockTextField: TypographyTextField {
                                               ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/Mocks/MockTextField.swift:12:48: note: main actor isolation inferred from inheritance from class 'TypographyTextField'
final class MockTextField: TypographyTextField {
                                               ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextFieldTests.swift:300:10: note: add '@MainActor' to make instance method 'makeSUT(file:line:)' part of global actor 'MainActor'
    func makeSUT(file: StaticString = #filePath, line: UInt = #line) -> MockTextField {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextFieldTests.swift:24:19: warning: sending value of non-Sendable type 'NSCoder' risks causing data races; this is an error in the Swift 6 language mode
        let sut = TypographyTextField(coder: try makeCoder(for: makeSUT()))
                  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextFieldTests.swift:24:19: note: sending task-isolated value of non-Sendable type 'NSCoder' to main actor-isolated callee risks causing races in between task-isolated and main actor-isolated uses
        let sut = TypographyTextField(coder: try makeCoder(for: makeSUT()))
                  ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextViewTests.swift (in target 'YMatterTypeTests' from project 'YMatterType')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextViewTests.swift:24:19: warning: call to main actor-isolated initializer 'init(coder:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        let sut = TypographyTextView(coder: try makeCoder(for: makeSUT()))
                  ^
/Users/admin/builder/spi-builder-workspace/Sources/YMatterType/Elements/TypographyTextView.swift:70:21: note: calls to initializer 'init(coder:)' from outside of its actor context are implicitly asynchronous
    required public init?(coder: NSCoder) {
                    ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextViewTests.swift:23:10: note: add '@MainActor' to make instance method 'testInitWithCoder()' part of global actor 'MainActor'
    func testInitWithCoder() throws {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextViewTests.swift:27:29: warning: main actor-isolated property 'typography' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertEqual(sut?.typography.fontSize, 38.0)
                            ^
/Users/admin/builder/spi-builder-workspace/Sources/YMatterType/Elements/TypographyTextView.swift:22:16: note: property declared here
    public var typography: Typography {
               ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextViewTests.swift:28:29: warning: main actor-isolated property 'typography' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertEqual(sut?.typography.fontWeight, .medium)
                            ^
/Users/admin/builder/spi-builder-workspace/Sources/YMatterType/Elements/TypographyTextView.swift:22:16: note: property declared here
    public var typography: Typography {
               ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextViewTests.swift:29:29: warning: main actor-isolated property 'typography' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertEqual(sut?.typography.textStyle, .body)
                            ^
/Users/admin/builder/spi-builder-workspace/Sources/YMatterType/Elements/TypographyTextView.swift:22:16: note: property declared here
    public var typography: Typography {
               ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextViewTests.swift:40:13: warning: main actor-isolated property 'text' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
        sut.text = "Hello World"
            ^
/Users/admin/builder/spi-builder-workspace/Sources/YMatterType/Elements/TypographyTextView.swift:84:25: note: mutation of this property is only permitted within the actor
    override public var text: String! {
                        ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextViewTests.swift:37:10: note: add '@MainActor' to make instance method 'testSingleLine()' part of global actor 'MainActor'
    func testSingleLine() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextViewTests.swift:43:29: warning: main actor-isolated property 'font' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertNotNil(sut.font)
                            ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextView.h:198:46: note: property declared here
@property(nullable,nonatomic,strong) UIFont *font;
                                             ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextViewTests.swift:46:17: warning: main actor-isolated property 'font' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
            sut.font?.familyName.removeSpaces(),
                ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextView.h:198:46: note: property declared here
@property(nullable,nonatomic,strong) UIFont *font;
                                             ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextViewTests.swift:47:17: warning: main actor-isolated property 'typography' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
            sut.typography.fontFamily.familyName.removeSpaces()
                ^
/Users/admin/builder/spi-builder-workspace/Sources/YMatterType/Elements/TypographyTextView.swift:22:16: note: property declared here
    public var typography: Typography {
               ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextViewTests.swift:50:28: warning: main actor-isolated property 'intrinsicContentSize' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertEqual(sut.intrinsicContentSize.height, sut.typography.lineHeight)
                           ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:530:39: note: property declared here
@property(nonatomic, readonly) CGSize intrinsicContentSize API_AVAILABLE(ios(6.0));
                                      ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextViewTests.swift:50:61: warning: main actor-isolated property 'typography' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertEqual(sut.intrinsicContentSize.height, sut.typography.lineHeight)
                                                            ^
/Users/admin/builder/spi-builder-workspace/Sources/YMatterType/Elements/TypographyTextView.swift:22:16: note: property declared here
    public var typography: Typography {
               ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextViewTests.swift:52:13: warning: call to main actor-isolated instance method 'sizeToFit()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        sut.sizeToFit()
            ^
UIKit.UIView.sizeToFit:2:22: note: calls to instance method 'sizeToFit()' from outside of its actor context are implicitly asynchronous
@MainActor open func sizeToFit()}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextViewTests.swift:37:10: note: add '@MainActor' to make instance method 'testSingleLine()' part of global actor 'MainActor'
    func testSingleLine() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextViewTests.swift:53:28: warning: main actor-isolated property 'intrinsicContentSize' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertEqual(sut.intrinsicContentSize, sut.bounds.size)
                           ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:530:39: note: property declared here
@property(nonatomic, readonly) CGSize intrinsicContentSize API_AVAILABLE(ios(6.0));
                                      ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextViewTests.swift:53:54: warning: main actor-isolated property 'bounds' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertEqual(sut.intrinsicContentSize, sut.bounds.size)
                                                     ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:188:40: note: property declared here
@property(nonatomic) CGRect            bounds;      // default bounds is zero origin, frame size. animatable
                                       ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextViewTests.swift:62:17: warning: main actor-isolated property 'text' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
            sut.text = array.joined(separator: "\n")
                ^
/Users/admin/builder/spi-builder-workspace/Sources/YMatterType/Elements/TypographyTextView.swift:84:25: note: mutation of this property is only permitted within the actor
    override public var text: String! {
                        ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextViewTests.swift:66:21: warning: main actor-isolated property 'intrinsicContentSize' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
                sut.intrinsicContentSize.height,
                    ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:530:39: note: property declared here
@property(nonatomic, readonly) CGSize intrinsicContentSize API_AVAILABLE(ios(6.0));
                                      ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextViewTests.swift:67:21: warning: main actor-isolated property 'typography' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
                sut.typography.lineHeight * CGFloat($0) + spacing * CGFloat($0 - 1)
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/YMatterType/Elements/TypographyTextView.swift:22:16: note: property declared here
    public var typography: Typography {
               ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextViewTests.swift:70:17: warning: call to main actor-isolated instance method 'sizeToFit()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            sut.sizeToFit()
                ^
UIKit.UIView.sizeToFit:2:22: note: calls to instance method 'sizeToFit()' from outside of its actor context are implicitly asynchronous
@MainActor open func sizeToFit()}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextViewTests.swift:71:32: warning: main actor-isolated property 'intrinsicContentSize' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
            XCTAssertEqual(sut.intrinsicContentSize, sut.bounds.size)
                               ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:530:39: note: property declared here
@property(nonatomic, readonly) CGSize intrinsicContentSize API_AVAILABLE(ios(6.0));
                                      ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextViewTests.swift:71:58: warning: main actor-isolated property 'bounds' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
            XCTAssertEqual(sut.intrinsicContentSize, sut.bounds.size)
                                                         ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:188:40: note: property declared here
@property(nonatomic) CGRect            bounds;      // default bounds is zero origin, frame size. animatable
                                       ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextViewTests.swift:78:13: warning: main actor-isolated property 'text' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
        sut.text = "Hello World\nHello World"
            ^
/Users/admin/builder/spi-builder-workspace/Sources/YMatterType/Elements/TypographyTextView.swift:84:25: note: mutation of this property is only permitted within the actor
    override public var text: String! {
                        ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextViewTests.swift:75:10: note: add '@MainActor' to make instance method 'testSetAlignment()' part of global actor 'MainActor'
    func testSetAlignment() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextViewTests.swift:84:17: warning: call to main actor-isolated instance method 'clear()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            sut.clear()
                ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/Mocks/MockTextView.swift:17:10: note: calls to instance method 'clear()' from outside of its actor context are implicitly asynchronous
    func clear() {
         ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/Mocks/MockTextView.swift:17:10: note: main actor isolation inferred from inheritance from class 'TypographyTextView'
    func clear() {
         ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextViewTests.swift:85:17: warning: main actor-isolated property 'textAlignment' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
            sut.textAlignment = $0
                ^
/Users/admin/builder/spi-builder-workspace/Sources/YMatterType/Elements/TypographyTextView.swift:106:25: note: mutation of this property is only permitted within the actor
    override public var textAlignment: NSTextAlignment {
                        ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextViewTests.swift:88:32: warning: main actor-isolated property 'isFontAdjusted' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
            XCTAssertFalse(sut.isFontAdjusted)
                               ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/Mocks/MockTextView.swift:13:9: note: property declared here
    var isFontAdjusted: Bool = false
        ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextViewTests.swift:90:32: warning: main actor-isolated property 'paragraphStyle' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
            XCTAssertEqual(sut.paragraphStyle.alignment, $0)
                               ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/Mocks/MockTextView.swift:38:9: note: property declared here
    var paragraphStyle: NSParagraphStyle {
        ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextViewTests.swift:93:32: warning: main actor-isolated property 'intrinsicContentSize' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
            XCTAssertEqual(sut.intrinsicContentSize.height, sut.typography.lineHeight * 2)
                               ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:530:39: note: property declared here
@property(nonatomic, readonly) CGSize intrinsicContentSize API_AVAILABLE(ios(6.0));
                                      ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextViewTests.swift:93:65: warning: main actor-isolated property 'typography' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
            XCTAssertEqual(sut.intrinsicContentSize.height, sut.typography.lineHeight * 2)
                                                                ^
/Users/admin/builder/spi-builder-workspace/Sources/YMatterType/Elements/TypographyTextView.swift:22:16: note: property declared here
    public var typography: Typography {
               ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextViewTests.swift:100:13: warning: main actor-isolated property 'text' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
        sut.text = "Hello World\nHello World"
            ^
/Users/admin/builder/spi-builder-workspace/Sources/YMatterType/Elements/TypographyTextView.swift:84:25: note: mutation of this property is only permitted within the actor
    override public var text: String! {
                        ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextViewTests.swift:97:10: note: add '@MainActor' to make instance method 'testSetTypography()' part of global actor 'MainActor'
    func testSetTypography() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextViewTests.swift:103:29: warning: main actor-isolated property 'font' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertNotNil(sut.font)
                            ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextView.h:198:46: note: property declared here
@property(nullable,nonatomic,strong) UIFont *font;
                                             ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextViewTests.swift:106:17: warning: main actor-isolated property 'font' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
            sut.font?.familyName.removeSpaces(),
                ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextView.h:198:46: note: property declared here
@property(nullable,nonatomic,strong) UIFont *font;
                                             ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextViewTests.swift:107:17: warning: main actor-isolated property 'typography' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
            sut.typography.fontFamily.familyName.removeSpaces()
                ^
/Users/admin/builder/spi-builder-workspace/Sources/YMatterType/Elements/TypographyTextView.swift:22:16: note: property declared here
    public var typography: Typography {
               ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextViewTests.swift:110:28: warning: main actor-isolated property 'intrinsicContentSize' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertEqual(sut.intrinsicContentSize.height, sut.typography.lineHeight * 2)
                           ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:530:39: note: property declared here
@property(nonatomic, readonly) CGSize intrinsicContentSize API_AVAILABLE(ios(6.0));
                                      ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextViewTests.swift:110:61: warning: main actor-isolated property 'typography' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertEqual(sut.intrinsicContentSize.height, sut.typography.lineHeight * 2)
                                                            ^
/Users/admin/builder/spi-builder-workspace/Sources/YMatterType/Elements/TypographyTextView.swift:22:16: note: property declared here
    public var typography: Typography {
               ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextViewTests.swift:122:13: warning: call to main actor-isolated instance method 'clear()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        sut.clear()
            ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/Mocks/MockTextView.swift:17:10: note: calls to instance method 'clear()' from outside of its actor context are implicitly asynchronous
    func clear() {
         ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/Mocks/MockTextView.swift:17:10: note: main actor isolation inferred from inheritance from class 'TypographyTextView'
    func clear() {
         ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextViewTests.swift:97:10: note: add '@MainActor' to make instance method 'testSetTypography()' part of global actor 'MainActor'
    func testSetTypography() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextViewTests.swift:123:13: warning: main actor-isolated property 'typography' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
        sut.typography = typography
            ^
/Users/admin/builder/spi-builder-workspace/Sources/YMatterType/Elements/TypographyTextView.swift:22:16: note: mutation of this property is only permitted within the actor
    public var typography: Typography {
               ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextViewTests.swift:97:10: note: add '@MainActor' to make instance method 'testSetTypography()' part of global actor 'MainActor'
    func testSetTypography() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextViewTests.swift:126:23: warning: main actor-isolated property 'isFontAdjusted' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssert(sut.isFontAdjusted)
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/Mocks/MockTextView.swift:13:9: note: property declared here
    var isFontAdjusted: Bool = false
        ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextViewTests.swift:127:28: warning: main actor-isolated property 'isColorAdjusted' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertFalse(sut.isColorAdjusted)
                           ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/Mocks/MockTextView.swift:14:9: note: property declared here
    var isColorAdjusted: Bool = false
        ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextViewTests.swift:128:28: warning: main actor-isolated property 'isBreakpointAdjusted' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertFalse(sut.isBreakpointAdjusted)
                           ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/Mocks/MockTextView.swift:15:9: note: property declared here
    var isBreakpointAdjusted: Bool = false
        ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextViewTests.swift:131:29: warning: main actor-isolated property 'font' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertNotNil(sut.font)
                            ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextView.h:198:46: note: property declared here
@property(nullable,nonatomic,strong) UIFont *font;
                                             ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextViewTests.swift:133:28: warning: main actor-isolated property 'font' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertEqual(sut.font?.familyName.removeSpaces(), typography.fontFamily.familyName)
                           ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextView.h:198:46: note: property declared here
@property(nullable,nonatomic,strong) UIFont *font;
                                             ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextViewTests.swift:135:28: warning: main actor-isolated property 'intrinsicContentSize' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertEqual(sut.intrinsicContentSize.height, typography.lineHeight * 2)
                           ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:530:39: note: property declared here
@property(nonatomic, readonly) CGSize intrinsicContentSize API_AVAILABLE(ios(6.0));
                                      ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextViewTests.swift:224:13: warning: main actor-isolated property 'text' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
        sut.text = "Hello World\nHello World"
            ^
/Users/admin/builder/spi-builder-workspace/Sources/YMatterType/Elements/TypographyTextView.swift:84:25: note: mutation of this property is only permitted within the actor
    override public var text: String! {
                        ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextViewTests.swift:221:10: note: add '@MainActor' to make instance method 'testSetText()' part of global actor 'MainActor'
    func testSetText() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextViewTests.swift:227:28: warning: main actor-isolated property 'text' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertFalse(sut.text?.isEmpty ?? true)
                           ^
/Users/admin/builder/spi-builder-workspace/Sources/YMatterType/Elements/TypographyTextView.swift:84:25: note: property declared here
    override public var text: String! {
                        ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextViewTests.swift:228:28: warning: main actor-isolated property 'attributedText' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertFalse(sut.attributedText?.string.isEmpty ?? true)
                           ^
/Users/admin/builder/spi-builder-workspace/Sources/YMatterType/Elements/TypographyTextView.swift:95:25: note: property declared here
    override public var attributedText: NSAttributedString? {
                        ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextViewTests.swift:231:13: warning: main actor-isolated property 'text' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
        sut.text = nil
            ^
/Users/admin/builder/spi-builder-workspace/Sources/YMatterType/Elements/TypographyTextView.swift:84:25: note: mutation of this property is only permitted within the actor
    override public var text: String! {
                        ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextViewTests.swift:221:10: note: add '@MainActor' to make instance method 'testSetText()' part of global actor 'MainActor'
    func testSetText() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextViewTests.swift:234:23: warning: main actor-isolated property 'text' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssert(sut.text?.isEmpty ?? true)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/YMatterType/Elements/TypographyTextView.swift:84:25: note: property declared here
    override public var text: String! {
                        ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextViewTests.swift:235:23: warning: main actor-isolated property 'attributedText' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssert(sut.attributedText?.string.isEmpty ?? true)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/YMatterType/Elements/TypographyTextView.swift:95:25: note: property declared here
    override public var attributedText: NSAttributedString? {
                        ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextViewTests.swift:241:13: warning: main actor-isolated property 'text' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
        sut.text = "A\nB"
            ^
/Users/admin/builder/spi-builder-workspace/Sources/YMatterType/Elements/TypographyTextView.swift:84:25: note: mutation of this property is only permitted within the actor
    override public var text: String! {
                        ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextViewTests.swift:238:10: note: add '@MainActor' to make instance method 'testAttributedText()' part of global actor 'MainActor'
    func testAttributedText() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextViewTests.swift:242:13: warning: call to main actor-isolated instance method 'layoutIfNeeded()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        sut.layoutIfNeeded()
            ^
UIKit.UIView.layoutIfNeeded:2:22: note: calls to instance method 'layoutIfNeeded()' from outside of its actor context are implicitly asynchronous
@MainActor open func layoutIfNeeded()}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextViewTests.swift:238:10: note: add '@MainActor' to make instance method 'testAttributedText()' part of global actor 'MainActor'
    func testAttributedText() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextViewTests.swift:244:13: warning: call to main actor-isolated instance method 'layoutIfNeeded()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        sut.layoutIfNeeded()
            ^
UIKit.UIView.layoutIfNeeded:2:22: note: calls to instance method 'layoutIfNeeded()' from outside of its actor context are implicitly asynchronous
@MainActor open func layoutIfNeeded()}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextViewTests.swift:238:10: note: add '@MainActor' to make instance method 'testAttributedText()' part of global actor 'MainActor'
    func testAttributedText() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextViewTests.swift:245:28: warning: main actor-isolated property 'intrinsicContentSize' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertEqual(sut.intrinsicContentSize.height, sut.typography.lineHeight * 2)
                           ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:530:39: note: property declared here
@property(nonatomic, readonly) CGSize intrinsicContentSize API_AVAILABLE(ios(6.0));
                                      ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextViewTests.swift:245:61: warning: main actor-isolated property 'typography' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertEqual(sut.intrinsicContentSize.height, sut.typography.lineHeight * 2)
                                                            ^
/Users/admin/builder/spi-builder-workspace/Sources/YMatterType/Elements/TypographyTextView.swift:22:16: note: property declared here
    public var typography: Typography {
               ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextViewTests.swift:248:13: warning: main actor-isolated property 'attributedText' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
        sut.attributedText = NSAttributedString(
            ^
/Users/admin/builder/spi-builder-workspace/Sources/YMatterType/Elements/TypographyTextView.swift:95:25: note: mutation of this property is only permitted within the actor
    override public var attributedText: NSAttributedString? {
                        ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextViewTests.swift:238:10: note: add '@MainActor' to make instance method 'testAttributedText()' part of global actor 'MainActor'
    func testAttributedText() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextViewTests.swift:254:28: warning: main actor-isolated property 'text' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertFalse(sut.text?.isEmpty ?? true)
                           ^
/Users/admin/builder/spi-builder-workspace/Sources/YMatterType/Elements/TypographyTextView.swift:84:25: note: property declared here
    override public var text: String! {
                        ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextViewTests.swift:255:28: warning: main actor-isolated property 'attributedText' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertFalse(sut.attributedText?.string.isEmpty ?? true)
                           ^
/Users/admin/builder/spi-builder-workspace/Sources/YMatterType/Elements/TypographyTextView.swift:95:25: note: property declared here
    override public var attributedText: NSAttributedString? {
                        ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextViewTests.swift:258:13: warning: main actor-isolated property 'textAlignment' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
        sut.textAlignment = .center
            ^
/Users/admin/builder/spi-builder-workspace/Sources/YMatterType/Elements/TypographyTextView.swift:106:25: note: mutation of this property is only permitted within the actor
    override public var textAlignment: NSTextAlignment {
                        ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextViewTests.swift:238:10: note: add '@MainActor' to make instance method 'testAttributedText()' part of global actor 'MainActor'
    func testAttributedText() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextViewTests.swift:259:28: warning: main actor-isolated property 'attributedText' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertFalse(sut.attributedText?.string.isEmpty ?? true)
                           ^
/Users/admin/builder/spi-builder-workspace/Sources/YMatterType/Elements/TypographyTextView.swift:95:25: note: property declared here
    override public var attributedText: NSAttributedString? {
                        ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextViewTests.swift:261:27: warning: main actor-isolated property 'attributedText' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertTrue(sut.attributedText?.hasUniversalAttribute(key: .strikethroughStyle) ?? false)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/YMatterType/Elements/TypographyTextView.swift:95:25: note: property declared here
    override public var attributedText: NSAttributedString? {
                        ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextViewTests.swift:263:13: warning: call to main actor-isolated instance method 'layoutIfNeeded()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        sut.layoutIfNeeded()
            ^
UIKit.UIView.layoutIfNeeded:2:22: note: calls to instance method 'layoutIfNeeded()' from outside of its actor context are implicitly asynchronous
@MainActor open func layoutIfNeeded()}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextViewTests.swift:238:10: note: add '@MainActor' to make instance method 'testAttributedText()' part of global actor 'MainActor'
    func testAttributedText() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextViewTests.swift:264:28: warning: main actor-isolated property 'intrinsicContentSize' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertEqual(sut.intrinsicContentSize.height, sut.typography.lineHeight)
                           ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:530:39: note: property declared here
@property(nonatomic, readonly) CGSize intrinsicContentSize API_AVAILABLE(ios(6.0));
                                      ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextViewTests.swift:264:61: warning: main actor-isolated property 'typography' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertEqual(sut.intrinsicContentSize.height, sut.typography.lineHeight)
                                                            ^
/Users/admin/builder/spi-builder-workspace/Sources/YMatterType/Elements/TypographyTextView.swift:22:16: note: property declared here
    public var typography: Typography {
               ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextViewTests.swift:267:13: warning: main actor-isolated property 'attributedText' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
        sut.attributedText = nil
            ^
/Users/admin/builder/spi-builder-workspace/Sources/YMatterType/Elements/TypographyTextView.swift:95:25: note: mutation of this property is only permitted within the actor
    override public var attributedText: NSAttributedString? {
                        ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextViewTests.swift:238:10: note: add '@MainActor' to make instance method 'testAttributedText()' part of global actor 'MainActor'
    func testAttributedText() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextViewTests.swift:270:23: warning: main actor-isolated property 'text' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssert(sut.text?.isEmpty ?? true)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/YMatterType/Elements/TypographyTextView.swift:84:25: note: property declared here
    override public var text: String! {
                        ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextViewTests.swift:271:23: warning: main actor-isolated property 'attributedText' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssert(sut.attributedText?.string.isEmpty ?? true)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/YMatterType/Elements/TypographyTextView.swift:95:25: note: property declared here
    override public var attributedText: NSAttributedString? {
                        ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextViewTests.swift:276:13: warning: main actor-isolated property 'text' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
        sut.text = "First name"
            ^
/Users/admin/builder/spi-builder-workspace/Sources/YMatterType/Elements/TypographyTextView.swift:84:25: note: mutation of this property is only permitted within the actor
    override public var text: String! {
                        ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextViewTests.swift:274:10: note: add '@MainActor' to make instance method 'testTextCase()' part of global actor 'MainActor'
    func testTextCase() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextViewTests.swift:279:28: warning: main actor-isolated property 'typography' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertEqual(sut.typography.textCase, .none)
                           ^
/Users/admin/builder/spi-builder-workspace/Sources/YMatterType/Elements/TypographyTextView.swift:22:16: note: property declared here
    public var typography: Typography {
               ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextViewTests.swift:280:28: warning: main actor-isolated property 'text' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertEqual(sut.text, "First name")
                           ^
/Users/admin/builder/spi-builder-workspace/Sources/YMatterType/Elements/TypographyTextView.swift:84:25: note: property declared here
    override public var text: String! {
                        ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextViewTests.swift:283:13: warning: main actor-isolated property 'typography' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
        sut.typography = sut.typography.textCase(.lowercase)
            ^
/Users/admin/builder/spi-builder-workspace/Sources/YMatterType/Elements/TypographyTextView.swift:22:16: note: mutation of this property is only permitted within the actor
    public var typography: Typography {
               ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextViewTests.swift:274:10: note: add '@MainActor' to make instance method 'testTextCase()' part of global actor 'MainActor'
    func testTextCase() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextViewTests.swift:283:30: warning: main actor-isolated property 'typography' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
        sut.typography = sut.typography.textCase(.lowercase)
                             ^
/Users/admin/builder/spi-builder-workspace/Sources/YMatterType/Elements/TypographyTextView.swift:22:16: note: property declared here
    public var typography: Typography {
               ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextViewTests.swift:274:10: note: add '@MainActor' to make instance method 'testTextCase()' part of global actor 'MainActor'
    func testTextCase() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextViewTests.swift:284:28: warning: main actor-isolated property 'text' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertEqual(sut.text, "first name")
                           ^
/Users/admin/builder/spi-builder-workspace/Sources/YMatterType/Elements/TypographyTextView.swift:84:25: note: property declared here
    override public var text: String! {
                        ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextViewTests.swift:286:13: warning: main actor-isolated property 'typography' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
        sut.typography = sut.typography.textCase(.uppercase)
            ^
/Users/admin/builder/spi-builder-workspace/Sources/YMatterType/Elements/TypographyTextView.swift:22:16: note: mutation of this property is only permitted within the actor
    public var typography: Typography {
               ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextViewTests.swift:274:10: note: add '@MainActor' to make instance method 'testTextCase()' part of global actor 'MainActor'
    func testTextCase() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextViewTests.swift:286:30: warning: main actor-isolated property 'typography' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
        sut.typography = sut.typography.textCase(.uppercase)
                             ^
/Users/admin/builder/spi-builder-workspace/Sources/YMatterType/Elements/TypographyTextView.swift:22:16: note: property declared here
    public var typography: Typography {
               ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextViewTests.swift:274:10: note: add '@MainActor' to make instance method 'testTextCase()' part of global actor 'MainActor'
    func testTextCase() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextViewTests.swift:287:28: warning: main actor-isolated property 'text' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertEqual(sut.text, "FIRST NAME")
                           ^
/Users/admin/builder/spi-builder-workspace/Sources/YMatterType/Elements/TypographyTextView.swift:84:25: note: property declared here
    override public var text: String! {
                        ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextViewTests.swift:289:13: warning: main actor-isolated property 'typography' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
        sut.typography = sut.typography.textCase(.capitalize)
            ^
/Users/admin/builder/spi-builder-workspace/Sources/YMatterType/Elements/TypographyTextView.swift:22:16: note: mutation of this property is only permitted within the actor
    public var typography: Typography {
               ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextViewTests.swift:274:10: note: add '@MainActor' to make instance method 'testTextCase()' part of global actor 'MainActor'
    func testTextCase() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextViewTests.swift:289:30: warning: main actor-isolated property 'typography' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
        sut.typography = sut.typography.textCase(.capitalize)
                             ^
/Users/admin/builder/spi-builder-workspace/Sources/YMatterType/Elements/TypographyTextView.swift:22:16: note: property declared here
    public var typography: Typography {
               ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextViewTests.swift:274:10: note: add '@MainActor' to make instance method 'testTextCase()' part of global actor 'MainActor'
    func testTextCase() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextViewTests.swift:290:28: warning: main actor-isolated property 'text' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertEqual(sut.text, "First Name")
                           ^
/Users/admin/builder/spi-builder-workspace/Sources/YMatterType/Elements/TypographyTextView.swift:84:25: note: property declared here
    override public var text: String! {
                        ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextViewTests.swift:293:13: warning: main actor-isolated property 'text' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
        sut.text = "john"
            ^
/Users/admin/builder/spi-builder-workspace/Sources/YMatterType/Elements/TypographyTextView.swift:84:25: note: mutation of this property is only permitted within the actor
    override public var text: String! {
                        ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextViewTests.swift:274:10: note: add '@MainActor' to make instance method 'testTextCase()' part of global actor 'MainActor'
    func testTextCase() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextViewTests.swift:294:28: warning: main actor-isolated property 'text' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertEqual(sut.text, "John")
                           ^
/Users/admin/builder/spi-builder-workspace/Sources/YMatterType/Elements/TypographyTextView.swift:84:25: note: property declared here
    override public var text: String! {
                        ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextViewTests.swift:297:13: warning: main actor-isolated property 'attributedText' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
        sut.attributedText = NSAttributedString(string: "first name", attributes: [.underlineStyle: 1])
            ^
/Users/admin/builder/spi-builder-workspace/Sources/YMatterType/Elements/TypographyTextView.swift:95:25: note: mutation of this property is only permitted within the actor
    override public var attributedText: NSAttributedString? {
                        ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextViewTests.swift:274:10: note: add '@MainActor' to make instance method 'testTextCase()' part of global actor 'MainActor'
    func testTextCase() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextViewTests.swift:298:28: warning: main actor-isolated property 'attributedText' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertEqual(sut.attributedText?.string, "First Name")
                           ^
/Users/admin/builder/spi-builder-workspace/Sources/YMatterType/Elements/TypographyTextView.swift:95:25: note: property declared here
    override public var attributedText: NSAttributedString? {
                        ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextViewTests.swift:313:19: warning: call to main actor-isolated initializer 'init(typography:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        let sut = MockTextView(typography: typography)
                  ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/Mocks/MockTextView.swift:12:46: note: calls to initializer 'init(typography:)' from outside of its actor context are implicitly asynchronous
final class MockTextView: TypographyTextView {
                                             ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/Mocks/MockTextView.swift:12:46: note: main actor isolation inferred from inheritance from class 'TypographyTextView'
final class MockTextView: TypographyTextView {
                                             ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextViewTests.swift:303:10: note: add '@MainActor' to make instance method 'makeSUT(spacing:file:line:)' part of global actor 'MainActor'
    func makeSUT(spacing: CGFloat = 0, file: StaticString = #filePath, line: UInt = #line) -> MockTextView {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextViewTests.swift:314:13: warning: main actor-isolated property 'isScrollEnabled' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
        sut.isScrollEnabled = false
            ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScrollView.h:115:59: note: mutation of this property is only permitted within the actor
@property(nonatomic,getter=isScrollEnabled) BOOL          scrollEnabled;                  // default YES. turn off any dragging temporarily
                                                          ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextViewTests.swift:303:10: note: add '@MainActor' to make instance method 'makeSUT(spacing:file:line:)' part of global actor 'MainActor'
    func makeSUT(spacing: CGFloat = 0, file: StaticString = #filePath, line: UInt = #line) -> MockTextView {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextViewTests.swift:24:19: warning: sending value of non-Sendable type 'NSCoder' risks causing data races; this is an error in the Swift 6 language mode
        let sut = TypographyTextView(coder: try makeCoder(for: makeSUT()))
                  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/TypographyTextViewTests.swift:24:19: note: sending task-isolated value of non-Sendable type 'NSCoder' to main actor-isolated callee risks causing races in between task-isolated and main actor-isolated uses
        let sut = TypographyTextView(coder: try makeCoder(for: makeSUT()))
                  ^
SwiftDriverJobDiscovery normal arm64 Compiling TypographyLabelRepresentable.swift, TextStyleLabel.swift, TypographyButton.swift (in target 'YMatterType' from project 'YMatterType')
SwiftCompile normal arm64 Compiling\ resource_bundle_accessor.swift,\ ElementBreakpointAdjustedTests.swift,\ ElementColorAdjustedTests.swift,\ ElementFontAdjustedTests.swift,\ MockButton.swift /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YMatterType.build/Debug-appletvos/YMatterTypeTests.build/DerivedSources/resource_bundle_accessor.swift /Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementBreakpointAdjustedTests.swift /Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementColorAdjustedTests.swift /Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementFontAdjustedTests.swift /Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/Mocks/MockButton.swift (in target 'YMatterTypeTests' from project 'YMatterType')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YMatterType.build/Debug-appletvos/YMatterTypeTests.build/DerivedSources/resource_bundle_accessor.swift (in target 'YMatterTypeTests' from project 'YMatterType')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementBreakpointAdjustedTests.swift (in target 'YMatterTypeTests' from project 'YMatterType')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementBreakpointAdjustedTests.swift:37:19: warning: call to main actor-isolated initializer 'init(typography:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        let sut = MockLabel(typography: typography)
                  ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/Mocks/MockLabel.swift:12:40: note: calls to initializer 'init(typography:)' from outside of its actor context are implicitly asynchronous
final class MockLabel: TypographyLabel {
                                       ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/Mocks/MockLabel.swift:12:40: note: main actor isolation inferred from inheritance from class 'TypographyLabel'
final class MockLabel: TypographyLabel {
                                       ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementBreakpointAdjustedTests.swift:36:10: note: add '@MainActor' to make instance method 'testLabel()' part of global actor 'MainActor'
    func testLabel() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementBreakpointAdjustedTests.swift:42:19: warning: call to main actor-isolated initializer 'init(typography:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        let sut = MockButton(typography: typography)
                  ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/Mocks/MockButton.swift:12:42: note: calls to initializer 'init(typography:)' from outside of its actor context are implicitly asynchronous
final class MockButton: TypographyButton {
                                         ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/Mocks/MockButton.swift:12:42: note: main actor isolation inferred from inheritance from class 'TypographyButton'
final class MockButton: TypographyButton {
                                         ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementBreakpointAdjustedTests.swift:41:10: note: add '@MainActor' to make instance method 'testButton()' part of global actor 'MainActor'
    func testButton() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementBreakpointAdjustedTests.swift:47:19: warning: call to main actor-isolated initializer 'init(typography:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        let sut = MockTextField(typography: typography)
                  ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/Mocks/MockTextField.swift:12:48: note: calls to initializer 'init(typography:)' from outside of its actor context are implicitly asynchronous
final class MockTextField: TypographyTextField {
                                               ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/Mocks/MockTextField.swift:12:48: note: main actor isolation inferred from inheritance from class 'TypographyTextField'
final class MockTextField: TypographyTextField {
                                               ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementBreakpointAdjustedTests.swift:46:10: note: add '@MainActor' to make instance method 'testTextField()' part of global actor 'MainActor'
    func testTextField() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementBreakpointAdjustedTests.swift:52:19: warning: call to main actor-isolated initializer 'init(typography:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        let sut = MockTextView(typography: typography)
                  ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/Mocks/MockTextView.swift:12:46: note: calls to initializer 'init(typography:)' from outside of its actor context are implicitly asynchronous
final class MockTextView: TypographyTextView {
                                             ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/Mocks/MockTextView.swift:12:46: note: main actor isolation inferred from inheritance from class 'TypographyTextView'
final class MockTextView: TypographyTextView {
                                             ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementBreakpointAdjustedTests.swift:51:10: note: add '@MainActor' to make instance method 'testTextView()' part of global actor 'MainActor'
    func testTextView() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementBreakpointAdjustedTests.swift:58:13: warning: call to main actor-isolated instance method 'clear()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        sut.clear()
            ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementBreakpointAdjustedTests.swift:14:10: note: calls to instance method 'clear()' from outside of its actor context are implicitly asynchronous
    func clear()
         ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementBreakpointAdjustedTests.swift:14:10: note: main actor isolation inferred from conformance to protocol 'UITraitEnvironment'
    func clear()
         ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementBreakpointAdjustedTests.swift:56:18: note: add '@MainActor' to make instance method '_testElement' part of global actor 'MainActor'
    private func _testElement<T: BreakpointAdjustable>(_ sut: T) {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementBreakpointAdjustedTests.swift:59:13: warning: call to main actor-isolated instance method 'traitCollectionDidChange' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        sut.traitCollectionDidChange(sut.traitCollection)
            ^
UIKit.UITraitEnvironment.traitCollectionDidChange:3:19: note: calls to instance method 'traitCollectionDidChange' from outside of its actor context are implicitly asynchronous
  @MainActor func traitCollectionDidChange(_ previousTraitCollection: UITraitCollection?)}
                  ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementBreakpointAdjustedTests.swift:56:18: note: add '@MainActor' to make instance method '_testElement' part of global actor 'MainActor'
    private func _testElement<T: BreakpointAdjustable>(_ sut: T) {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementBreakpointAdjustedTests.swift:59:42: warning: main actor-isolated property 'traitCollection' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
        sut.traitCollectionDidChange(sut.traitCollection)
                                         ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITraitCollection.h:170:52: note: property declared here
@property (nonatomic, readonly) UITraitCollection *traitCollection API_AVAILABLE(ios(8.0));
                                                   ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementBreakpointAdjustedTests.swift:56:18: note: add '@MainActor' to make instance method '_testElement' part of global actor 'MainActor'
    private func _testElement<T: BreakpointAdjustable>(_ sut: T) {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementBreakpointAdjustedTests.swift:60:28: warning: main actor-isolated property 'isBreakpointAdjusted' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertFalse(sut.isBreakpointAdjusted)
                           ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementBreakpointAdjustedTests.swift:18:9: note: property declared here
    var isBreakpointAdjusted: Bool { get }
        ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementBreakpointAdjustedTests.swift:62:84: warning: main actor-isolated property 'traitCollection' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
        let sameTraits = UITraitCollection.generateSimilarBreakpointTraits(to: sut.traitCollection)
                                                                                   ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITraitCollection.h:170:52: note: property declared here
@property (nonatomic, readonly) UITraitCollection *traitCollection API_AVAILABLE(ios(8.0));
                                                   ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementBreakpointAdjustedTests.swift:56:18: note: add '@MainActor' to make instance method '_testElement' part of global actor 'MainActor'
    private func _testElement<T: BreakpointAdjustable>(_ sut: T) {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementBreakpointAdjustedTests.swift:66:17: warning: call to main actor-isolated instance method 'clear()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            sut.clear()
                ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementBreakpointAdjustedTests.swift:14:10: note: calls to instance method 'clear()' from outside of its actor context are implicitly asynchronous
    func clear()
         ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementBreakpointAdjustedTests.swift:14:10: note: main actor isolation inferred from conformance to protocol 'UITraitEnvironment'
    func clear()
         ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementBreakpointAdjustedTests.swift:67:17: warning: call to main actor-isolated instance method 'traitCollectionDidChange' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            sut.traitCollectionDidChange($0)
                ^
UIKit.UITraitEnvironment.traitCollectionDidChange:3:19: note: calls to instance method 'traitCollectionDidChange' from outside of its actor context are implicitly asynchronous
  @MainActor func traitCollectionDidChange(_ previousTraitCollection: UITraitCollection?)}
                  ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementBreakpointAdjustedTests.swift:68:32: warning: main actor-isolated property 'isBreakpointAdjusted' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
            XCTAssertFalse(sut.isBreakpointAdjusted)
                               ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementBreakpointAdjustedTests.swift:18:9: note: property declared here
    var isBreakpointAdjusted: Bool { get }
        ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementBreakpointAdjustedTests.swift:75:17: warning: call to main actor-isolated instance method 'clear()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            sut.clear()
                ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementBreakpointAdjustedTests.swift:14:10: note: calls to instance method 'clear()' from outside of its actor context are implicitly asynchronous
    func clear()
         ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementBreakpointAdjustedTests.swift:14:10: note: main actor isolation inferred from conformance to protocol 'UITraitEnvironment'
    func clear()
         ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementBreakpointAdjustedTests.swift:76:17: warning: call to main actor-isolated instance method 'traitCollectionDidChange' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            sut.traitCollectionDidChange($0)
                ^
UIKit.UITraitEnvironment.traitCollectionDidChange:3:19: note: calls to instance method 'traitCollectionDidChange' from outside of its actor context are implicitly asynchronous
  @MainActor func traitCollectionDidChange(_ previousTraitCollection: UITraitCollection?)}
                  ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementBreakpointAdjustedTests.swift:77:32: warning: main actor-isolated property 'isBreakpointAdjusted' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
            XCTAssertEqual(sut.isBreakpointAdjusted, sut.traitCollection.hasDifferentBreakpoint(comparedTo: $0))
                               ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementBreakpointAdjustedTests.swift:18:9: note: property declared here
    var isBreakpointAdjusted: Bool { get }
        ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementBreakpointAdjustedTests.swift:77:58: warning: main actor-isolated property 'traitCollection' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
            XCTAssertEqual(sut.isBreakpointAdjusted, sut.traitCollection.hasDifferentBreakpoint(comparedTo: $0))
                                                         ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITraitCollection.h:170:52: note: property declared here
@property (nonatomic, readonly) UITraitCollection *traitCollection API_AVAILABLE(ios(8.0));
                                                   ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementBreakpointAdjustedTests.swift:58:13: warning: sending 'sut' risks causing data races; this is an error in the Swift 6 language mode
        sut.clear()
        ~~~~^~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementBreakpointAdjustedTests.swift:58:13: note: sending task-isolated 'sut' to main actor-isolated instance method 'clear()' risks causing data races between main actor-isolated and task-isolated uses
        sut.clear()
            ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementBreakpointAdjustedTests.swift:59:13: warning: sending 'sut' risks causing data races; this is an error in the Swift 6 language mode
        sut.traitCollectionDidChange(sut.traitCollection)
        ~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementBreakpointAdjustedTests.swift:59:13: note: sending task-isolated 'sut' to main actor-isolated instance method 'traitCollectionDidChange' risks causing data races between main actor-isolated and task-isolated uses
        sut.traitCollectionDidChange(sut.traitCollection)
            ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementBreakpointAdjustedTests.swift:37:19: warning: sending 'self.typography' risks causing data races; this is an error in the Swift 6 language mode
        let sut = MockLabel(typography: typography)
                  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementBreakpointAdjustedTests.swift:37:19: note: sending task-isolated 'self.typography' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
        let sut = MockLabel(typography: typography)
                  ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementBreakpointAdjustedTests.swift:42:19: warning: sending 'self.typography' risks causing data races; this is an error in the Swift 6 language mode
        let sut = MockButton(typography: typography)
                  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementBreakpointAdjustedTests.swift:42:19: note: sending task-isolated 'self.typography' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
        let sut = MockButton(typography: typography)
                  ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementBreakpointAdjustedTests.swift:47:19: warning: sending 'self.typography' risks causing data races; this is an error in the Swift 6 language mode
        let sut = MockTextField(typography: typography)
                  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementBreakpointAdjustedTests.swift:47:19: note: sending task-isolated 'self.typography' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
        let sut = MockTextField(typography: typography)
                  ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementBreakpointAdjustedTests.swift:52:19: warning: sending 'self.typography' risks causing data races; this is an error in the Swift 6 language mode
        let sut = MockTextView(typography: typography)
                  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementBreakpointAdjustedTests.swift:52:19: note: sending task-isolated 'self.typography' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
        let sut = MockTextView(typography: typography)
                  ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementBreakpointAdjustedTests.swift:66:17: warning: sending 'sut' risks causing data races; this is an error in the Swift 6 language mode
            sut.clear()
            ~~~~^~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementBreakpointAdjustedTests.swift:66:17: note: sending task-isolated 'sut' to main actor-isolated instance method 'clear()' risks causing data races between main actor-isolated and task-isolated uses
            sut.clear()
                ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementBreakpointAdjustedTests.swift:67:17: warning: sending 'sut' risks causing data races; this is an error in the Swift 6 language mode
            sut.traitCollectionDidChange($0)
            ~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementBreakpointAdjustedTests.swift:67:17: note: sending task-isolated 'sut' to main actor-isolated instance method 'traitCollectionDidChange' risks causing data races between main actor-isolated and task-isolated uses
            sut.traitCollectionDidChange($0)
                ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementBreakpointAdjustedTests.swift:75:17: warning: sending 'sut' risks causing data races; this is an error in the Swift 6 language mode
            sut.clear()
            ~~~~^~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementBreakpointAdjustedTests.swift:75:17: note: sending task-isolated 'sut' to main actor-isolated instance method 'clear()' risks causing data races between main actor-isolated and task-isolated uses
            sut.clear()
                ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementBreakpointAdjustedTests.swift:76:17: warning: sending 'sut' risks causing data races; this is an error in the Swift 6 language mode
            sut.traitCollectionDidChange($0)
            ~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementBreakpointAdjustedTests.swift:76:17: note: sending task-isolated 'sut' to main actor-isolated instance method 'traitCollectionDidChange' risks causing data races between main actor-isolated and task-isolated uses
            sut.traitCollectionDidChange($0)
                ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementColorAdjustedTests.swift (in target 'YMatterTypeTests' from project 'YMatterType')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementColorAdjustedTests.swift:32:19: warning: call to main actor-isolated initializer 'init(typography:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        let sut = MockLabel(typography: typography)
                  ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/Mocks/MockLabel.swift:12:40: note: calls to initializer 'init(typography:)' from outside of its actor context are implicitly asynchronous
final class MockLabel: TypographyLabel {
                                       ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/Mocks/MockLabel.swift:12:40: note: main actor isolation inferred from inheritance from class 'TypographyLabel'
final class MockLabel: TypographyLabel {
                                       ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementColorAdjustedTests.swift:31:10: note: add '@MainActor' to make instance method 'testLabel()' part of global actor 'MainActor'
    func testLabel() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementColorAdjustedTests.swift:37:19: warning: call to main actor-isolated initializer 'init(typography:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        let sut = MockButton(typography: typography)
                  ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/Mocks/MockButton.swift:12:42: note: calls to initializer 'init(typography:)' from outside of its actor context are implicitly asynchronous
final class MockButton: TypographyButton {
                                         ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/Mocks/MockButton.swift:12:42: note: main actor isolation inferred from inheritance from class 'TypographyButton'
final class MockButton: TypographyButton {
                                         ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementColorAdjustedTests.swift:36:10: note: add '@MainActor' to make instance method 'testButton()' part of global actor 'MainActor'
    func testButton() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementColorAdjustedTests.swift:42:19: warning: call to main actor-isolated initializer 'init(typography:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        let sut = MockTextField(typography: typography)
                  ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/Mocks/MockTextField.swift:12:48: note: calls to initializer 'init(typography:)' from outside of its actor context are implicitly asynchronous
final class MockTextField: TypographyTextField {
                                               ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/Mocks/MockTextField.swift:12:48: note: main actor isolation inferred from inheritance from class 'TypographyTextField'
final class MockTextField: TypographyTextField {
                                               ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementColorAdjustedTests.swift:41:10: note: add '@MainActor' to make instance method 'testTextField()' part of global actor 'MainActor'
    func testTextField() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementColorAdjustedTests.swift:47:19: warning: call to main actor-isolated initializer 'init(typography:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        let sut = MockTextView(typography: typography)
                  ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/Mocks/MockTextView.swift:12:46: note: calls to initializer 'init(typography:)' from outside of its actor context are implicitly asynchronous
final class MockTextView: TypographyTextView {
                                             ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/Mocks/MockTextView.swift:12:46: note: main actor isolation inferred from inheritance from class 'TypographyTextView'
final class MockTextView: TypographyTextView {
                                             ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementColorAdjustedTests.swift:46:10: note: add '@MainActor' to make instance method 'testTextView()' part of global actor 'MainActor'
    func testTextView() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementColorAdjustedTests.swift:53:13: warning: call to main actor-isolated instance method 'clear()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        sut.clear()
            ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementBreakpointAdjustedTests.swift:14:10: note: calls to instance method 'clear()' from outside of its actor context are implicitly asynchronous
    func clear()
         ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementBreakpointAdjustedTests.swift:14:10: note: main actor isolation inferred from conformance to protocol 'UITraitEnvironment'
    func clear()
         ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementColorAdjustedTests.swift:51:18: note: add '@MainActor' to make instance method '_testElement' part of global actor 'MainActor'
    private func _testElement<T: ColorAdjustable>(_ sut: T) {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementColorAdjustedTests.swift:54:13: warning: call to main actor-isolated instance method 'traitCollectionDidChange' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        sut.traitCollectionDidChange(sut.traitCollection)
            ^
UIKit.UITraitEnvironment.traitCollectionDidChange:3:19: note: calls to instance method 'traitCollectionDidChange' from outside of its actor context are implicitly asynchronous
  @MainActor func traitCollectionDidChange(_ previousTraitCollection: UITraitCollection?)}
                  ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementColorAdjustedTests.swift:51:18: note: add '@MainActor' to make instance method '_testElement' part of global actor 'MainActor'
    private func _testElement<T: ColorAdjustable>(_ sut: T) {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementColorAdjustedTests.swift:54:42: warning: main actor-isolated property 'traitCollection' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
        sut.traitCollectionDidChange(sut.traitCollection)
                                         ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITraitCollection.h:170:52: note: property declared here
@property (nonatomic, readonly) UITraitCollection *traitCollection API_AVAILABLE(ios(8.0));
                                                   ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementColorAdjustedTests.swift:51:18: note: add '@MainActor' to make instance method '_testElement' part of global actor 'MainActor'
    private func _testElement<T: ColorAdjustable>(_ sut: T) {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementColorAdjustedTests.swift:55:28: warning: main actor-isolated property 'isColorAdjusted' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertFalse(sut.isColorAdjusted)
                           ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementColorAdjustedTests.swift:13:9: note: property declared here
    var isColorAdjusted: Bool { get }
        ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementColorAdjustedTests.swift:57:79: warning: main actor-isolated property 'traitCollection' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
        let sameTraits = UITraitCollection.generateSimilarColorTraits(to: sut.traitCollection)
                                                                              ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITraitCollection.h:170:52: note: property declared here
@property (nonatomic, readonly) UITraitCollection *traitCollection API_AVAILABLE(ios(8.0));
                                                   ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementColorAdjustedTests.swift:51:18: note: add '@MainActor' to make instance method '_testElement' part of global actor 'MainActor'
    private func _testElement<T: ColorAdjustable>(_ sut: T) {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementColorAdjustedTests.swift:61:17: warning: call to main actor-isolated instance method 'clear()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            sut.clear()
                ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementBreakpointAdjustedTests.swift:14:10: note: calls to instance method 'clear()' from outside of its actor context are implicitly asynchronous
    func clear()
         ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementBreakpointAdjustedTests.swift:14:10: note: main actor isolation inferred from conformance to protocol 'UITraitEnvironment'
    func clear()
         ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementColorAdjustedTests.swift:62:17: warning: call to main actor-isolated instance method 'traitCollectionDidChange' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            sut.traitCollectionDidChange($0)
                ^
UIKit.UITraitEnvironment.traitCollectionDidChange:3:19: note: calls to instance method 'traitCollectionDidChange' from outside of its actor context are implicitly asynchronous
  @MainActor func traitCollectionDidChange(_ previousTraitCollection: UITraitCollection?)}
                  ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementColorAdjustedTests.swift:63:32: warning: main actor-isolated property 'isColorAdjusted' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
            XCTAssertFalse(sut.isColorAdjusted)
                               ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementColorAdjustedTests.swift:13:9: note: property declared here
    var isColorAdjusted: Bool { get }
        ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementColorAdjustedTests.swift:70:17: warning: call to main actor-isolated instance method 'clear()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            sut.clear()
                ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementBreakpointAdjustedTests.swift:14:10: note: calls to instance method 'clear()' from outside of its actor context are implicitly asynchronous
    func clear()
         ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementBreakpointAdjustedTests.swift:14:10: note: main actor isolation inferred from conformance to protocol 'UITraitEnvironment'
    func clear()
         ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementColorAdjustedTests.swift:71:17: warning: call to main actor-isolated instance method 'traitCollectionDidChange' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            sut.traitCollectionDidChange($0)
                ^
UIKit.UITraitEnvironment.traitCollectionDidChange:3:19: note: calls to instance method 'traitCollectionDidChange' from outside of its actor context are implicitly asynchronous
  @MainActor func traitCollectionDidChange(_ previousTraitCollection: UITraitCollection?)}
                  ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementColorAdjustedTests.swift:72:32: warning: main actor-isolated property 'isColorAdjusted' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
            XCTAssertEqual(sut.isColorAdjusted, sut.traitCollection.hasDifferentColorAppearance(comparedTo: $0))
                               ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementColorAdjustedTests.swift:13:9: note: property declared here
    var isColorAdjusted: Bool { get }
        ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementColorAdjustedTests.swift:72:53: warning: main actor-isolated property 'traitCollection' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
            XCTAssertEqual(sut.isColorAdjusted, sut.traitCollection.hasDifferentColorAppearance(comparedTo: $0))
                                                    ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITraitCollection.h:170:52: note: property declared here
@property (nonatomic, readonly) UITraitCollection *traitCollection API_AVAILABLE(ios(8.0));
                                                   ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementColorAdjustedTests.swift:53:13: warning: sending 'sut' risks causing data races; this is an error in the Swift 6 language mode
        sut.clear()
        ~~~~^~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementColorAdjustedTests.swift:53:13: note: sending task-isolated 'sut' to main actor-isolated instance method 'clear()' risks causing data races between main actor-isolated and task-isolated uses
        sut.clear()
            ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementColorAdjustedTests.swift:54:13: warning: sending 'sut' risks causing data races; this is an error in the Swift 6 language mode
        sut.traitCollectionDidChange(sut.traitCollection)
        ~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementColorAdjustedTests.swift:54:13: note: sending task-isolated 'sut' to main actor-isolated instance method 'traitCollectionDidChange' risks causing data races between main actor-isolated and task-isolated uses
        sut.traitCollectionDidChange(sut.traitCollection)
            ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementColorAdjustedTests.swift:32:19: warning: sending 'self.typography' risks causing data races; this is an error in the Swift 6 language mode
        let sut = MockLabel(typography: typography)
                  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementColorAdjustedTests.swift:32:19: note: sending task-isolated 'self.typography' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
        let sut = MockLabel(typography: typography)
                  ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementColorAdjustedTests.swift:37:19: warning: sending 'self.typography' risks causing data races; this is an error in the Swift 6 language mode
        let sut = MockButton(typography: typography)
                  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementColorAdjustedTests.swift:37:19: note: sending task-isolated 'self.typography' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
        let sut = MockButton(typography: typography)
                  ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementColorAdjustedTests.swift:42:19: warning: sending 'self.typography' risks causing data races; this is an error in the Swift 6 language mode
        let sut = MockTextField(typography: typography)
                  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementColorAdjustedTests.swift:42:19: note: sending task-isolated 'self.typography' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
        let sut = MockTextField(typography: typography)
                  ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementColorAdjustedTests.swift:47:19: warning: sending 'self.typography' risks causing data races; this is an error in the Swift 6 language mode
        let sut = MockTextView(typography: typography)
                  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementColorAdjustedTests.swift:47:19: note: sending task-isolated 'self.typography' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
        let sut = MockTextView(typography: typography)
                  ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementColorAdjustedTests.swift:61:17: warning: sending 'sut' risks causing data races; this is an error in the Swift 6 language mode
            sut.clear()
            ~~~~^~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementColorAdjustedTests.swift:61:17: note: sending task-isolated 'sut' to main actor-isolated instance method 'clear()' risks causing data races between main actor-isolated and task-isolated uses
            sut.clear()
                ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementColorAdjustedTests.swift:62:17: warning: sending 'sut' risks causing data races; this is an error in the Swift 6 language mode
            sut.traitCollectionDidChange($0)
            ~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementColorAdjustedTests.swift:62:17: note: sending task-isolated 'sut' to main actor-isolated instance method 'traitCollectionDidChange' risks causing data races between main actor-isolated and task-isolated uses
            sut.traitCollectionDidChange($0)
                ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementColorAdjustedTests.swift:70:17: warning: sending 'sut' risks causing data races; this is an error in the Swift 6 language mode
            sut.clear()
            ~~~~^~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementColorAdjustedTests.swift:70:17: note: sending task-isolated 'sut' to main actor-isolated instance method 'clear()' risks causing data races between main actor-isolated and task-isolated uses
            sut.clear()
                ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementColorAdjustedTests.swift:71:17: warning: sending 'sut' risks causing data races; this is an error in the Swift 6 language mode
            sut.traitCollectionDidChange($0)
            ~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementColorAdjustedTests.swift:71:17: note: sending task-isolated 'sut' to main actor-isolated instance method 'traitCollectionDidChange' risks causing data races between main actor-isolated and task-isolated uses
            sut.traitCollectionDidChange($0)
                ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementFontAdjustedTests.swift (in target 'YMatterTypeTests' from project 'YMatterType')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementFontAdjustedTests.swift:32:19: warning: call to main actor-isolated initializer 'init(typography:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        let sut = MockLabel(typography: typography)
                  ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/Mocks/MockLabel.swift:12:40: note: calls to initializer 'init(typography:)' from outside of its actor context are implicitly asynchronous
final class MockLabel: TypographyLabel {
                                       ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/Mocks/MockLabel.swift:12:40: note: main actor isolation inferred from inheritance from class 'TypographyLabel'
final class MockLabel: TypographyLabel {
                                       ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementFontAdjustedTests.swift:31:10: note: add '@MainActor' to make instance method 'testLabel()' part of global actor 'MainActor'
    func testLabel() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementFontAdjustedTests.swift:37:19: warning: call to main actor-isolated initializer 'init(typography:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        let sut = MockButton(typography: typography)
                  ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/Mocks/MockButton.swift:12:42: note: calls to initializer 'init(typography:)' from outside of its actor context are implicitly asynchronous
final class MockButton: TypographyButton {
                                         ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/Mocks/MockButton.swift:12:42: note: main actor isolation inferred from inheritance from class 'TypographyButton'
final class MockButton: TypographyButton {
                                         ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementFontAdjustedTests.swift:36:10: note: add '@MainActor' to make instance method 'testButton()' part of global actor 'MainActor'
    func testButton() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementFontAdjustedTests.swift:42:19: warning: call to main actor-isolated initializer 'init(typography:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        let sut = MockTextField(typography: typography)
                  ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/Mocks/MockTextField.swift:12:48: note: calls to initializer 'init(typography:)' from outside of its actor context are implicitly asynchronous
final class MockTextField: TypographyTextField {
                                               ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/Mocks/MockTextField.swift:12:48: note: main actor isolation inferred from inheritance from class 'TypographyTextField'
final class MockTextField: TypographyTextField {
                                               ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementFontAdjustedTests.swift:41:10: note: add '@MainActor' to make instance method 'testTextField()' part of global actor 'MainActor'
    func testTextField() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementFontAdjustedTests.swift:47:19: warning: call to main actor-isolated initializer 'init(typography:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        let sut = MockTextView(typography: typography)
                  ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/Mocks/MockTextView.swift:12:46: note: calls to initializer 'init(typography:)' from outside of its actor context are implicitly asynchronous
final class MockTextView: TypographyTextView {
                                             ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/Mocks/MockTextView.swift:12:46: note: main actor isolation inferred from inheritance from class 'TypographyTextView'
final class MockTextView: TypographyTextView {
                                             ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementFontAdjustedTests.swift:46:10: note: add '@MainActor' to make instance method 'testTextView()' part of global actor 'MainActor'
    func testTextView() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementFontAdjustedTests.swift:53:13: warning: call to main actor-isolated instance method 'clear()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        sut.clear()
            ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementBreakpointAdjustedTests.swift:14:10: note: calls to instance method 'clear()' from outside of its actor context are implicitly asynchronous
    func clear()
         ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementBreakpointAdjustedTests.swift:14:10: note: main actor isolation inferred from conformance to protocol 'UITraitEnvironment'
    func clear()
         ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementFontAdjustedTests.swift:51:18: note: add '@MainActor' to make instance method '_testElement' part of global actor 'MainActor'
    private func _testElement<T: FontAdjustable>(_ sut: T) {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementFontAdjustedTests.swift:54:13: warning: call to main actor-isolated instance method 'traitCollectionDidChange' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        sut.traitCollectionDidChange(sut.traitCollection)
            ^
UIKit.UITraitEnvironment.traitCollectionDidChange:3:19: note: calls to instance method 'traitCollectionDidChange' from outside of its actor context are implicitly asynchronous
  @MainActor func traitCollectionDidChange(_ previousTraitCollection: UITraitCollection?)}
                  ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementFontAdjustedTests.swift:51:18: note: add '@MainActor' to make instance method '_testElement' part of global actor 'MainActor'
    private func _testElement<T: FontAdjustable>(_ sut: T) {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementFontAdjustedTests.swift:54:42: warning: main actor-isolated property 'traitCollection' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
        sut.traitCollectionDidChange(sut.traitCollection)
                                         ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITraitCollection.h:170:52: note: property declared here
@property (nonatomic, readonly) UITraitCollection *traitCollection API_AVAILABLE(ios(8.0));
                                                   ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementFontAdjustedTests.swift:51:18: note: add '@MainActor' to make instance method '_testElement' part of global actor 'MainActor'
    private func _testElement<T: FontAdjustable>(_ sut: T) {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementFontAdjustedTests.swift:55:28: warning: main actor-isolated property 'isFontAdjusted' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertFalse(sut.isFontAdjusted)
                           ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementFontAdjustedTests.swift:13:9: note: property declared here
    var isFontAdjusted: Bool { get }
        ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementFontAdjustedTests.swift:57:78: warning: main actor-isolated property 'traitCollection' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
        let sameTraits = UITraitCollection.generateSimilarFontTraits(to: sut.traitCollection)
                                                                             ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITraitCollection.h:170:52: note: property declared here
@property (nonatomic, readonly) UITraitCollection *traitCollection API_AVAILABLE(ios(8.0));
                                                   ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementFontAdjustedTests.swift:51:18: note: add '@MainActor' to make instance method '_testElement' part of global actor 'MainActor'
    private func _testElement<T: FontAdjustable>(_ sut: T) {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementFontAdjustedTests.swift:61:17: warning: call to main actor-isolated instance method 'clear()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            sut.clear()
                ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementBreakpointAdjustedTests.swift:14:10: note: calls to instance method 'clear()' from outside of its actor context are implicitly asynchronous
    func clear()
         ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementBreakpointAdjustedTests.swift:14:10: note: main actor isolation inferred from conformance to protocol 'UITraitEnvironment'
    func clear()
         ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementFontAdjustedTests.swift:62:17: warning: call to main actor-isolated instance method 'traitCollectionDidChange' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            sut.traitCollectionDidChange($0)
                ^
UIKit.UITraitEnvironment.traitCollectionDidChange:3:19: note: calls to instance method 'traitCollectionDidChange' from outside of its actor context are implicitly asynchronous
  @MainActor func traitCollectionDidChange(_ previousTraitCollection: UITraitCollection?)}
                  ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementFontAdjustedTests.swift:63:32: warning: main actor-isolated property 'isFontAdjusted' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
            XCTAssertFalse(sut.isFontAdjusted)
                               ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementFontAdjustedTests.swift:13:9: note: property declared here
    var isFontAdjusted: Bool { get }
        ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementFontAdjustedTests.swift:70:17: warning: call to main actor-isolated instance method 'clear()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            sut.clear()
                ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementBreakpointAdjustedTests.swift:14:10: note: calls to instance method 'clear()' from outside of its actor context are implicitly asynchronous
    func clear()
         ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementBreakpointAdjustedTests.swift:14:10: note: main actor isolation inferred from conformance to protocol 'UITraitEnvironment'
    func clear()
         ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementFontAdjustedTests.swift:71:17: warning: call to main actor-isolated instance method 'traitCollectionDidChange' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            sut.traitCollectionDidChange($0)
                ^
UIKit.UITraitEnvironment.traitCollectionDidChange:3:19: note: calls to instance method 'traitCollectionDidChange' from outside of its actor context are implicitly asynchronous
  @MainActor func traitCollectionDidChange(_ previousTraitCollection: UITraitCollection?)}
                  ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementFontAdjustedTests.swift:72:32: warning: main actor-isolated property 'isFontAdjusted' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
            XCTAssertEqual(sut.isFontAdjusted, sut.traitCollection.hasDifferentFontAppearance(comparedTo: $0))
                               ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementFontAdjustedTests.swift:13:9: note: property declared here
    var isFontAdjusted: Bool { get }
        ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementFontAdjustedTests.swift:72:52: warning: main actor-isolated property 'traitCollection' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
            XCTAssertEqual(sut.isFontAdjusted, sut.traitCollection.hasDifferentFontAppearance(comparedTo: $0))
                                                   ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITraitCollection.h:170:52: note: property declared here
@property (nonatomic, readonly) UITraitCollection *traitCollection API_AVAILABLE(ios(8.0));
                                                   ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementFontAdjustedTests.swift:53:13: warning: sending 'sut' risks causing data races; this is an error in the Swift 6 language mode
        sut.clear()
        ~~~~^~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementFontAdjustedTests.swift:53:13: note: sending task-isolated 'sut' to main actor-isolated instance method 'clear()' risks causing data races between main actor-isolated and task-isolated uses
        sut.clear()
            ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementFontAdjustedTests.swift:54:13: warning: sending 'sut' risks causing data races; this is an error in the Swift 6 language mode
        sut.traitCollectionDidChange(sut.traitCollection)
        ~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementFontAdjustedTests.swift:54:13: note: sending task-isolated 'sut' to main actor-isolated instance method 'traitCollectionDidChange' risks causing data races between main actor-isolated and task-isolated uses
        sut.traitCollectionDidChange(sut.traitCollection)
            ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementFontAdjustedTests.swift:32:19: warning: sending 'self.typography' risks causing data races; this is an error in the Swift 6 language mode
        let sut = MockLabel(typography: typography)
                  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementFontAdjustedTests.swift:32:19: note: sending task-isolated 'self.typography' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
        let sut = MockLabel(typography: typography)
                  ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementFontAdjustedTests.swift:37:19: warning: sending 'self.typography' risks causing data races; this is an error in the Swift 6 language mode
        let sut = MockButton(typography: typography)
                  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementFontAdjustedTests.swift:37:19: note: sending task-isolated 'self.typography' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
        let sut = MockButton(typography: typography)
                  ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementFontAdjustedTests.swift:42:19: warning: sending 'self.typography' risks causing data races; this is an error in the Swift 6 language mode
        let sut = MockTextField(typography: typography)
                  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementFontAdjustedTests.swift:42:19: note: sending task-isolated 'self.typography' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
        let sut = MockTextField(typography: typography)
                  ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementFontAdjustedTests.swift:47:19: warning: sending 'self.typography' risks causing data races; this is an error in the Swift 6 language mode
        let sut = MockTextView(typography: typography)
                  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementFontAdjustedTests.swift:47:19: note: sending task-isolated 'self.typography' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
        let sut = MockTextView(typography: typography)
                  ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementFontAdjustedTests.swift:61:17: warning: sending 'sut' risks causing data races; this is an error in the Swift 6 language mode
            sut.clear()
            ~~~~^~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementFontAdjustedTests.swift:61:17: note: sending task-isolated 'sut' to main actor-isolated instance method 'clear()' risks causing data races between main actor-isolated and task-isolated uses
            sut.clear()
                ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementFontAdjustedTests.swift:62:17: warning: sending 'sut' risks causing data races; this is an error in the Swift 6 language mode
            sut.traitCollectionDidChange($0)
            ~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementFontAdjustedTests.swift:62:17: note: sending task-isolated 'sut' to main actor-isolated instance method 'traitCollectionDidChange' risks causing data races between main actor-isolated and task-isolated uses
            sut.traitCollectionDidChange($0)
                ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementFontAdjustedTests.swift:70:17: warning: sending 'sut' risks causing data races; this is an error in the Swift 6 language mode
            sut.clear()
            ~~~~^~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementFontAdjustedTests.swift:70:17: note: sending task-isolated 'sut' to main actor-isolated instance method 'clear()' risks causing data races between main actor-isolated and task-isolated uses
            sut.clear()
                ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementFontAdjustedTests.swift:71:17: warning: sending 'sut' risks causing data races; this is an error in the Swift 6 language mode
            sut.traitCollectionDidChange($0)
            ~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/ElementFontAdjustedTests.swift:71:17: note: sending task-isolated 'sut' to main actor-isolated instance method 'traitCollectionDidChange' risks causing data races between main actor-isolated and task-isolated uses
            sut.traitCollectionDidChange($0)
                ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Elements/Mocks/MockButton.swift (in target 'YMatterTypeTests' from project 'YMatterType')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling Typography+Font.swift, Typography+Mutators.swift (in target 'YMatterType' from project 'YMatterType')
SwiftCompile normal arm64 Compiling\ DefaultFontFamilyFactoryTests.swift,\ DefaultFontFamilyTests.swift,\ FontFamilyTests.swift,\ HelveticaNeueFontFamilyTests.swift /Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Typography/FontFamily/DefaultFontFamilyFactoryTests.swift /Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Typography/FontFamily/DefaultFontFamilyTests.swift /Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Typography/FontFamily/FontFamilyTests.swift /Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Typography/FontFamily/HelveticaNeueFontFamilyTests.swift (in target 'YMatterTypeTests' from project 'YMatterType')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Typography/FontFamily/DefaultFontFamilyFactoryTests.swift (in target 'YMatterTypeTests' from project 'YMatterType')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Typography/FontFamily/DefaultFontFamilyTests.swift (in target 'YMatterTypeTests' from project 'YMatterType')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Typography/FontFamily/FontFamilyTests.swift (in target 'YMatterTypeTests' from project 'YMatterType')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Typography/FontFamily/FontFamilyTests.swift:75:35: warning: main actor-isolated static property 'isBoldTextEnabled' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
            (nil, UIAccessibility.isBoldTextEnabled ? bold : regular)
                                  ^
UIKit.UIAccessibility.isBoldTextEnabled:3:32: note: static property declared here
  @MainActor public static var isBoldTextEnabled: Bool { get }}
                               ^
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Typography/FontFamily/FontFamilyTests.swift:66:10: note: add '@MainActor' to make instance method 'testCompatibleTraitCollection()' part of global actor 'MainActor'
    func testCompatibleTraitCollection() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Typography/FontFamily/FontFamilyTests.swift:113:84: warning: main actor-isolated static property 'isBoldTextEnabled' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertEqual(sut.isBoldTextEnabled(compatibleWith: nil), UIAccessibility.isBoldTextEnabled)
                                                                                   ^
UIKit.UIAccessibility.isBoldTextEnabled:3:32: note: static property declared here
  @MainActor public static var isBoldTextEnabled: Bool { get }}
                               ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Typography/FontFamily/HelveticaNeueFontFamilyTests.swift (in target 'YMatterTypeTests' from project 'YMatterType')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Emitting module for YMatterTypeTests (in target 'YMatterTypeTests' from project 'YMatterType')
SwiftDriver\ Compilation\ Requirements YMatterTypeTests normal arm64 com.apple.xcode.tools.swift.compiler (in target 'YMatterTypeTests' from project 'YMatterType')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name YMatterTypeTests -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YMatterType.build/Debug-appletvos/YMatterTypeTests.build/Objects-normal/arm64/YMatterTypeTests.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk -target arm64-apple-tvos14.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/Developer/Library/Frameworks -emit-localized-strings -emit-localized-strings-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YMatterType.build/Debug-appletvos/YMatterTypeTests.build/Objects-normal/arm64 -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.4-22L251-271d326055c85f9856fa135c41255102.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YMatterType.build/Debug-appletvos/YMatterTypeTests.build/Objects-normal/arm64/YMatterTypeTests-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YMatterType.build/Debug-appletvos/YMatterTypeTests.build/Objects-normal/arm64/YMatterTypeTests.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YMatterType.build/Debug-appletvos/YMatterTypeTests.build/Objects-normal/arm64/YMatterTypeTests_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YMatterType.build/Debug-appletvos/YMatterTypeTests.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YMatterType.build/Debug-appletvos/YMatterTypeTests.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YMatterType.build/Debug-appletvos/YMatterTypeTests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling CGFloat+rounded.swift, NSAttributedString+hasAttribute.swift, Typography+YMatterTypeTests.swift, UIEdgeInsets+vertical.swift (in target 'YMatterTypeTests' from project 'YMatterType')
SwiftDriver\ Compilation YMatterType normal arm64 com.apple.xcode.tools.swift.compiler (in target 'YMatterType' from project 'YMatterType')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name YMatterType -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YMatterType.build/Debug-appletvos/YMatterType.build/Objects-normal/arm64/YMatterType.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk -target arm64-apple-tvos14.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/Developer/Library/Frameworks -emit-localized-strings -emit-localized-strings-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YMatterType.build/Debug-appletvos/YMatterType.build/Objects-normal/arm64 -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.4-22L251-271d326055c85f9856fa135c41255102.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YMatterType.build/Debug-appletvos/YMatterType.build/Objects-normal/arm64/YMatterType-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YMatterType.build/Debug-appletvos/YMatterType.build/Objects-normal/arm64/YMatterType.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YMatterType.build/Debug-appletvos/YMatterType.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YMatterType.build/Debug-appletvos/YMatterType.build/Objects-normal/arm64/YMatterType_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YMatterType.build/Debug-appletvos/YMatterType.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YMatterType.build/Debug-appletvos/YMatterType.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YMatterType.build/Debug-appletvos/YMatterType.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YMatterType.build/Debug-appletvos/YMatterType.build/Objects-normal/arm64/YMatterType-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/YMatterTypeTests.swiftmodule/arm64-apple-tvos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YMatterType.build/Debug-appletvos/YMatterTypeTests.build/Objects-normal/arm64/YMatterTypeTests.swiftmodule (in target 'YMatterTypeTests' from project 'YMatterType')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YMatterType.build/Debug-appletvos/YMatterTypeTests.build/Objects-normal/arm64/YMatterTypeTests.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/YMatterTypeTests.swiftmodule/arm64-apple-tvos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/YMatterTypeTests.swiftmodule/arm64-apple-tvos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YMatterType.build/Debug-appletvos/YMatterTypeTests.build/Objects-normal/arm64/YMatterTypeTests.swiftdoc (in target 'YMatterTypeTests' from project 'YMatterType')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YMatterType.build/Debug-appletvos/YMatterTypeTests.build/Objects-normal/arm64/YMatterTypeTests.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/YMatterTypeTests.swiftmodule/arm64-apple-tvos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/YMatterTypeTests.swiftmodule/arm64-apple-tvos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YMatterType.build/Debug-appletvos/YMatterTypeTests.build/Objects-normal/arm64/YMatterTypeTests.abi.json (in target 'YMatterTypeTests' from project 'YMatterType')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YMatterType.build/Debug-appletvos/YMatterTypeTests.build/Objects-normal/arm64/YMatterTypeTests.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/YMatterTypeTests.swiftmodule/arm64-apple-tvos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/YMatterTypeTests.swiftmodule/Project/arm64-apple-tvos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YMatterType.build/Debug-appletvos/YMatterTypeTests.build/Objects-normal/arm64/YMatterTypeTests.swiftsourceinfo (in target 'YMatterTypeTests' from project 'YMatterType')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YMatterType.build/Debug-appletvos/YMatterTypeTests.build/Objects-normal/arm64/YMatterTypeTests.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/YMatterTypeTests.swiftmodule/Project/arm64-apple-tvos.swiftsourceinfo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/YMatterType.o normal (in target 'YMatterType' from project 'YMatterType')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-tvos14.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-appletvos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-appletvos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YMatterType.build/Debug-appletvos/YMatterType.build/Objects-normal/arm64/YMatterType.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YMatterType.build/Debug-appletvos/YMatterType.build/Objects-normal/arm64/YMatterType_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YMatterType.build/Debug-appletvos/YMatterType.build/Objects-normal/arm64/YMatterType_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/appletvos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YMatterType.build/Debug-appletvos/YMatterType.build/Objects-normal/arm64/YMatterType.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/YMatterType.o
ExtractAppIntentsMetadata (in target 'YMatterType' from project 'YMatterType')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name YMatterType --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk --xcode-version 16E140 --platform-family tvOS --deployment-target 14.0 --bundle-identifier spi-builder-workspace.YMatterType --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/YMatterType.appintents --target-triple arm64-apple-tvos14.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/YMatterType.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YMatterType.build/Debug-appletvos/YMatterType.build/Objects-normal/arm64/YMatterType_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YMatterType.build/Debug-appletvos/YMatterType.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YMatterType.build/Debug-appletvos/YMatterType.build/Objects-normal/arm64/YMatterType.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YMatterType.build/Debug-appletvos/YMatterType.build/YMatterType.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YMatterType.build/Debug-appletvos/YMatterType.build/YMatterType.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YMatterType.build/Debug-appletvos/YMatterType.build/Objects-normal/arm64/YMatterType.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-04-27 15:15:50.490 appintentsmetadataprocessor[732:4242] Starting appintentsmetadataprocessor export
2025-04-27 15:15:50.539 appintentsmetadataprocessor[732:4242] Extracted no relevant App Intents symbols, skipping writing output
SwiftDriverJobDiscovery normal arm64 Compiling UIFont+load.swift, UITraitCollection+default.swift, XCTestCase+MemoryLeakTracking.swift, XCTestCase+TypographyEquatable.swift (in target 'YMatterTypeTests' from project 'YMatterType')
SwiftDriverJobDiscovery normal arm64 Compiling NSParagraphStyle+lineSpacingTests.swift, UIFont+registerTests.swift, UITraitCollection+breakpointTests.swift, UITraitCollection+fontAppearanceTests.swift, UITraitCollection+traits.swift (in target 'YMatterTypeTests' from project 'YMatterType')
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/YMatterType.o (in target 'YMatterType' from project 'YMatterType')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/YMatterType.o
SwiftDriverJobDiscovery normal arm64 Compiling SystemFontFamilyTests.swift, TypogaphyTests.swift, Typography+EnumTests.swift, Typography+FontTests.swift (in target 'YMatterTypeTests' from project 'YMatterType')
ProcessInfoPlistFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/YMatterTypeTests.xctest/Info.plist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YMatterType.build/Debug-appletvos/YMatterTypeTests.build/empty-YMatterTypeTests.plist (in target 'YMatterTypeTests' from project 'YMatterType')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-infoPlistUtility /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YMatterType.build/Debug-appletvos/YMatterTypeTests.build/empty-YMatterTypeTests.plist -producttype com.apple.product-type.bundle.unit-test -expandbuildsettings -format binary -platform appletvos -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/YMatterTypeTests.xctest/Info.plist
CpResource /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/YMatterTypeTests.xctest/YMatterType_YMatterTypeTests.bundle /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/YMatterType_YMatterTypeTests.bundle (in target 'YMatterTypeTests' from project 'YMatterType')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/YMatterType_YMatterTypeTests.bundle /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/YMatterTypeTests.xctest
SwiftDriverJobDiscovery normal arm64 Compiling Typography+MutatorsTests.swift, Typography+SystemTests.swift, TypographyLayoutTests.swift, YMatterType+LoggingTests.swift (in target 'YMatterTypeTests' from project 'YMatterType')
SwiftDriverJobDiscovery normal arm64 Compiling MockLabel.swift, MockTextField.swift, MockTextView.swift, TypographyLabelRepresentableTests.swift, TextStyleLabelTests.swift (in target 'YMatterTypeTests' from project 'YMatterType')
SwiftDriverJobDiscovery normal arm64 Compiling BaseStringTestCase.swift, NSAttributedString+baseAttributesTests.swift, NSAttributedString+textCaseTests.swift, String+textCaseTests.swift, String+textSizeTests.swift (in target 'YMatterTypeTests' from project 'YMatterType')
SwiftDriverJobDiscovery normal arm64 Compiling resource_bundle_accessor.swift, ElementBreakpointAdjustedTests.swift, ElementColorAdjustedTests.swift, ElementFontAdjustedTests.swift, MockButton.swift (in target 'YMatterTypeTests' from project 'YMatterType')
SwiftDriverJobDiscovery normal arm64 Compiling DefaultFontFamilyFactoryTests.swift, DefaultFontFamilyTests.swift, FontFamilyTests.swift, HelveticaNeueFontFamilyTests.swift (in target 'YMatterTypeTests' from project 'YMatterType')
SwiftDriverJobDiscovery normal arm64 Compiling TypographyButtonTests.swift, TypographyElementTests.swift, TypographyLabelTests.swift, TypographyTextFieldTests.swift, TypographyTextViewTests.swift (in target 'YMatterTypeTests' from project 'YMatterType')
SwiftDriver\ Compilation YMatterTypeTests normal arm64 com.apple.xcode.tools.swift.compiler (in target 'YMatterTypeTests' from project 'YMatterType')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name YMatterTypeTests -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YMatterType.build/Debug-appletvos/YMatterTypeTests.build/Objects-normal/arm64/YMatterTypeTests.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk -target arm64-apple-tvos14.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/Developer/Library/Frameworks -emit-localized-strings -emit-localized-strings-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YMatterType.build/Debug-appletvos/YMatterTypeTests.build/Objects-normal/arm64 -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.4-22L251-271d326055c85f9856fa135c41255102.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YMatterType.build/Debug-appletvos/YMatterTypeTests.build/Objects-normal/arm64/YMatterTypeTests-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YMatterType.build/Debug-appletvos/YMatterTypeTests.build/Objects-normal/arm64/YMatterTypeTests.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YMatterType.build/Debug-appletvos/YMatterTypeTests.build/Objects-normal/arm64/YMatterTypeTests_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YMatterType.build/Debug-appletvos/YMatterTypeTests.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YMatterType.build/Debug-appletvos/YMatterTypeTests.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YMatterType.build/Debug-appletvos/YMatterTypeTests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/YMatterTypeTests.xctest/YMatterTypeTests normal (in target 'YMatterTypeTests' from project 'YMatterType')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-tvos14.0 -bundle -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-appletvos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-appletvos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YMatterType.build/Debug-appletvos/YMatterTypeTests.build/Objects-normal/arm64/YMatterTypeTests.LinkFileList -Xlinker -rpath -Xlinker /usr/lib/swift -Xlinker -rpath -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -Xlinker -rpath -Xlinker @loader_path/Frameworks -Xlinker -rpath -Xlinker @loader_path/../Frameworks -dead_strip -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YMatterType.build/Debug-appletvos/YMatterTypeTests.build/Objects-normal/arm64/YMatterTypeTests_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YMatterType.build/Debug-appletvos/YMatterTypeTests.build/Objects-normal/arm64/YMatterTypeTests_dependency_info.dat -fobjc-link-runtime -fprofile-instr-generate -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/appletvos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YMatterType.build/Debug-appletvos/YMatterTypeTests.build/Objects-normal/arm64/YMatterTypeTests.swiftmodule -Wl,-no_warn_duplicate_libraries -framework XCTest -lXCTestSwiftSupport -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/YMatterTypeTests.xctest/YMatterTypeTests -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YMatterType.build/Debug-appletvos/YMatterType.build/Objects-normal/arm64/YMatterType.swiftmodule
CopySwiftLibs /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/YMatterTypeTests.xctest (in target 'YMatterTypeTests' from project 'YMatterType')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftStdLibTool --copy --verbose --scan-executable /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/YMatterTypeTests.xctest/YMatterTypeTests --scan-folder /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/YMatterTypeTests.xctest/Frameworks --scan-folder /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/YMatterTypeTests.xctest/PlugIns --scan-folder /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/YMatterTypeTests.xctest/SystemExtensions --scan-folder /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/YMatterTypeTests.xctest/Extensions --platform appletvos --toolchain /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --destination /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/YMatterTypeTests.xctest/Frameworks --strip-bitcode --scan-executable /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/libXCTestSwiftSupport.dylib --strip-bitcode-tool /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/bitcode_strip --emit-dependency-info /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YMatterType.build/Debug-appletvos/YMatterTypeTests.build/SwiftStdLibToolInputDependencies.dep --filter-for-swift-os --back-deploy-swift-concurrency
Ignoring --strip-bitcode because --sign was not passed
Copying /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift-5.5/appletvos/libswift_Concurrency.dylib to /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/YMatterTypeTests.xctest/Frameworks/libswift_Concurrency.dylib
ExtractAppIntentsMetadata (in target 'YMatterTypeTests' from project 'YMatterType')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name YMatterTypeTests --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk --xcode-version 16E140 --platform-family tvOS --deployment-target 14.0 --bundle-identifier spi-builder-workspace.YMatterTypeTests --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/YMatterTypeTests.xctest --target-triple arm64-apple-tvos14.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/YMatterTypeTests.xctest/YMatterTypeTests --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YMatterType.build/Debug-appletvos/YMatterTypeTests.build/Objects-normal/arm64/YMatterTypeTests_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YMatterType.build/Debug-appletvos/YMatterTypeTests.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YMatterType.build/Debug-appletvos/YMatterTypeTests.build/Objects-normal/arm64/YMatterTypeTests.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YMatterType.build/Debug-appletvos/YMatterTypeTests.build/YMatterTypeTests.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YMatterType.build/Debug-appletvos/YMatterTypeTests.build/YMatterTypeTests.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YMatterType.build/Debug-appletvos/YMatterTypeTests.build/Objects-normal/arm64/YMatterTypeTests.SwiftConstValuesFileList --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-04-27 15:15:51.261 appintentsmetadataprocessor[735:4293] Starting appintentsmetadataprocessor export
2025-04-27 15:15:51.263 appintentsmetadataprocessor[735:4293] warning: Metadata extraction skipped. No AppIntents.framework dependency found.
GenerateDSYMFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/YMatterTypeTests.xctest.dSYM /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/YMatterTypeTests.xctest/YMatterTypeTests (in target 'YMatterTypeTests' from project 'YMatterType')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/dsymutil /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/YMatterTypeTests.xctest/YMatterTypeTests -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/YMatterTypeTests.xctest.dSYM
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/YMatterTypeTests.xctest (in target 'YMatterTypeTests' from project 'YMatterType')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/YMatterTypeTests.xctest
Touch /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/YMatterTypeTests.xctest (in target 'YMatterTypeTests' from project 'YMatterType')
    cd /Users/admin/builder/spi-builder-workspace
    /usr/bin/touch -c /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/YMatterTypeTests.xctest
** BUILD SUCCEEDED **
Build complete.
{
  "default_localization" : "en",
  "dependencies" : [
  ],
  "manifest_display_name" : "YMatterType",
  "name" : "YMatterType",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "14.0"
    },
    {
      "name" : "tvos",
      "version" : "14.0"
    }
  ],
  "products" : [
    {
      "name" : "YMatterType",
      "targets" : [
        "YMatterType"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "YMatterTypeTests",
      "module_type" : "SwiftTarget",
      "name" : "YMatterTypeTests",
      "path" : "Tests/YMatterTypeTests",
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/YMatterTypeTests/Assets",
          "rule" : {
            "copy" : {
            }
          }
        }
      ],
      "sources" : [
        "Elements/ElementBreakpointAdjustedTests.swift",
        "Elements/ElementColorAdjustedTests.swift",
        "Elements/ElementFontAdjustedTests.swift",
        "Elements/Mocks/MockButton.swift",
        "Elements/Mocks/MockLabel.swift",
        "Elements/Mocks/MockTextField.swift",
        "Elements/Mocks/MockTextView.swift",
        "Elements/Representables/TypographyLabelRepresentableTests.swift",
        "Elements/TextStyleLabelTests.swift",
        "Elements/TypographyButtonTests.swift",
        "Elements/TypographyElementTests.swift",
        "Elements/TypographyLabelTests.swift",
        "Elements/TypographyTextFieldTests.swift",
        "Elements/TypographyTextViewTests.swift",
        "Extensions/Foundation/BaseStringTestCase.swift",
        "Extensions/Foundation/NSAttributedString+baseAttributesTests.swift",
        "Extensions/Foundation/NSAttributedString+textCaseTests.swift",
        "Extensions/Foundation/String+textCaseTests.swift",
        "Extensions/Foundation/String+textSizeTests.swift",
        "Extensions/UIKit/NSParagraphStyle+lineSpacingTests.swift",
        "Extensions/UIKit/UIFont+registerTests.swift",
        "Extensions/UIKit/UITraitCollection+breakpointTests.swift",
        "Extensions/UIKit/UITraitCollection+fontAppearanceTests.swift",
        "Extensions/UIKit/UITraitCollection+traits.swift",
        "Helpers/CGFloat+rounded.swift",
        "Helpers/NSAttributedString+hasAttribute.swift",
        "Helpers/Typography+YMatterTypeTests.swift",
        "Helpers/UIEdgeInsets+vertical.swift",
        "Helpers/UIFont+load.swift",
        "Helpers/UITraitCollection+default.swift",
        "Helpers/XCTestCase+MemoryLeakTracking.swift",
        "Helpers/XCTestCase+TypographyEquatable.swift",
        "Typography/FontFamily/DefaultFontFamilyFactoryTests.swift",
        "Typography/FontFamily/DefaultFontFamilyTests.swift",
        "Typography/FontFamily/FontFamilyTests.swift",
        "Typography/FontFamily/HelveticaNeueFontFamilyTests.swift",
        "Typography/FontFamily/SystemFontFamilyTests.swift",
        "Typography/TypogaphyTests.swift",
        "Typography/Typography+EnumTests.swift",
        "Typography/Typography+FontTests.swift",
        "Typography/Typography+MutatorsTests.swift",
        "Typography/Typography+SystemTests.swift",
        "Typography/TypographyLayoutTests.swift",
        "YMatterType+LoggingTests.swift"
      ],
      "target_dependencies" : [
        "YMatterType"
      ],
      "type" : "test"
    },
    {
      "c99name" : "YMatterType",
      "module_type" : "SwiftTarget",
      "name" : "YMatterType",
      "path" : "Sources/YMatterType",
      "product_memberships" : [
        "YMatterType"
      ],
      "sources" : [
        "Elements/Representables/TypographyLabelRepresentable.swift",
        "Elements/TextStyleLabel.swift",
        "Elements/TypographyButton.swift",
        "Elements/TypographyLabel.swift",
        "Elements/TypographyTextField.swift",
        "Elements/TypographyTextView.swift",
        "Extensions/Foundation/NSAttributedString+baseAttributes.swift",
        "Extensions/Foundation/NSAttributedString+textCase.swift",
        "Extensions/Foundation/String+textCase.swift",
        "Extensions/Foundation/String+textSize.swift",
        "Extensions/UIKit/NSParagraphStyle+lineSpacing.swift",
        "Extensions/UIKit/UIFont+register.swift",
        "Extensions/UIKit/UITraitCollection+breakpoint.swift",
        "Extensions/UIKit/UITraitCollection+fontAppearance.swift",
        "Typography/FontFamily/DefaultFontFamily.swift",
        "Typography/FontFamily/DefaultFontFamilyFactory.swift",
        "Typography/FontFamily/FontFamily.swift",
        "Typography/FontFamily/FontFamilyFactory.swift",
        "Typography/FontFamily/HelveticaNeueFontFamily.swift",
        "Typography/FontFamily/SystemFontFamily.swift",
        "Typography/Typography+Enums.swift",
        "Typography/Typography+Font.swift",
        "Typography/Typography+Mutators.swift",
        "Typography/Typography+System.swift",
        "Typography/Typography.swift",
        "Typography/TypographyLayout.swift",
        "YMatterType+Logging.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.5"
}
Done.