The Swift Package Index logo.Swift Package Index

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

Build Information

Failed to build LoadableViews, reference main (42f98e), with Swift 6.1 for Linux on 26 Apr 2025 11:15:15 UTC.

Build Command

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

Build Log

========================================
RunAll
========================================
Builder version: 4.61.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/MLSDev/LoadableViews.git
Reference: main
Initialized empty Git repository in /host/spi-builder-workspace/.git/
hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: 	git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: 	git branch -m <name>
From https://github.com/MLSDev/LoadableViews
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at 42f98ee Bump nokogiri from 1.18.4 to 1.18.8 (#23)
Cloned https://github.com/MLSDev/LoadableViews.git
Revision (git rev-parse @):
42f98eef9a9a1ee0b9fd604051811d1ea8aa5a4d
SUCCESS checkout https://github.com/MLSDev/LoadableViews.git at main
========================================
Build
========================================
Selected platform:         linux
Swift version:             6.1
Building package at path:  $PWD
https://github.com/MLSDev/LoadableViews.git
https://github.com/MLSDev/LoadableViews.git
WARNING: environment variable SUPPRESS_SWIFT_6_FLAGS is not set
{
  "dependencies" : [
  ],
  "manifest_display_name" : "LoadableViews",
  "name" : "LoadableViews",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "LoadableViews",
      "targets" : [
        "LoadableViews"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "swift_languages_versions" : [
    "4.2",
    "5"
  ],
  "targets" : [
    {
      "c99name" : "LoadableViews",
      "module_type" : "SwiftTarget",
      "name" : "LoadableViews",
      "path" : "Sources/LoadableViews",
      "product_memberships" : [
        "LoadableViews"
      ],
      "sources" : [
        "LoadableView+UIKit.swift",
        "LoadableView+macOS.swift",
        "LoadableView.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.1"
}
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-1":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.1-latest swift build --triple x86_64-unknown-linux-gnu -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures 2>&1
basic-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:3bdcac04179f4ed3e5b8e9dbd6e74bbf5ebc0f4fde48bbaad7d1e5c757e65bcb
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.1-latest
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-24593BA9C3E375BF.txt
error: emit-module command failed with exit code 1 (use -v to see invocation)
[3/6] Compiling LoadableViews LoadableView+UIKit.swift
[4/6] Compiling LoadableViews LoadableView+macOS.swift
[5/6] Emitting module LoadableViews
/host/spi-builder-workspace/Sources/LoadableViews/LoadableView.swift:40:27: error: cannot find type 'PlatformView' in scope
38 |
39 |     /// View that serves as a container for loadable view. Loadable views are added to container view in `setupNib(_:)` method.
40 |     var nibContainerView: PlatformView { get }
   |                           `- error: cannot find type 'PlatformView' in scope
41 |
42 |     /// Method that loads view from single view xib with `nibName`.
/host/spi-builder-workspace/Sources/LoadableViews/LoadableView.swift:45:23: error: cannot find type 'PlatformView' in scope
43 |     ///
44 |     /// - returns: loaded from xib view
45 |     func loadNib() -> PlatformView
   |                       `- error: cannot find type 'PlatformView' in scope
46 |
47 |     /// Method that is used to load and configure loadableView. It is then added to `nibContainerView` as a subview. This view receives constraints of same width and height as container view.
/host/spi-builder-workspace/Sources/LoadableViews/LoadableView.swift:57:11: error: cannot find type 'PlatformView' in scope
55 | }
56 |
57 | extension PlatformView {
   |           `- error: cannot find type 'PlatformView' in scope
58 |     /// View usually serves itself as a default container for loadable views
59 |     @objc dynamic open var nibContainerView : PlatformView { return self }
/host/spi-builder-workspace/Sources/LoadableViews/LoadableView.swift:73:21: error: initializer does not override a designated initializer from its superclass
71 | open class LoadableView: PlatformView, NibLoadableProtocol {
72 |
73 |     public override init(frame: CGRect) {
   |                     `- error: initializer does not override a designated initializer from its superclass
74 |         super.init(frame: frame)
75 |         setupNib()
/host/spi-builder-workspace/Sources/LoadableViews/LoadableView.swift:71:26: error: cannot find type 'PlatformView' in scope
69 |
70 | /// UIView subclass, that can be loaded into different xib or storyboard by simply referencing it's class.
71 | open class LoadableView: PlatformView, NibLoadableProtocol {
   |                          `- error: cannot find type 'PlatformView' in scope
72 |
73 |     public override init(frame: CGRect) {
/host/spi-builder-workspace/Sources/LoadableViews/LoadableView.swift:71:12: error: type 'LoadableView' does not conform to protocol 'NibLoadableProtocol'
69 |
70 | /// UIView subclass, that can be loaded into different xib or storyboard by simply referencing it's class.
71 | open class LoadableView: PlatformView, NibLoadableProtocol {
   |            `- error: type 'LoadableView' does not conform to protocol 'NibLoadableProtocol'
72 |
73 |     public override init(frame: CGRect) {
/host/spi-builder-workspace/Sources/LoadableViews/LoadableView.swift:71:12: error: type 'LoadableView' does not conform to protocol 'NSObjectProtocol'
49 |
50 |     /// Name of .xib file to load view from.
51 |     var nibName : String { get }
   |         `- note: protocol requires property 'nibName' with type 'String'
52 |
53 |     /// Bundle to load nib from
54 |     var bundle: Bundle { get }
   |         `- note: protocol requires property 'bundle' with type 'Bundle'
55 | }
56 |
   :
69 |
70 | /// UIView subclass, that can be loaded into different xib or storyboard by simply referencing it's class.
71 | open class LoadableView: PlatformView, NibLoadableProtocol {
   |            |- error: type 'LoadableView' does not conform to protocol 'NSObjectProtocol'
   |            `- note: add stubs for conformance
72 |
73 |     public override init(frame: CGRect) {
Foundation.NSObjectProtocol.isEqual:2:6: note: protocol requires function 'isEqual' with type '(Any?) -> Bool'
1 | protocol NSObjectProtocol {
2 | func isEqual(_ object: Any?) -> Bool}
  |      `- note: protocol requires function 'isEqual' with type '(Any?) -> Bool'
3 |
Foundation.NSObjectProtocol.hash:2:5: note: protocol requires property 'hash' with type 'Int'
1 | protocol NSObjectProtocol {
2 | var hash: Int { get }}
  |     `- note: protocol requires property 'hash' with type 'Int'
3 |
Foundation.NSObjectProtocol.self:2:6: note: protocol requires function 'self()' with type '() -> Self'
1 | protocol NSObjectProtocol {
2 | func `self`() -> Self}
  |      `- note: protocol requires function 'self()' with type '() -> Self'
3 |
Foundation.NSObjectProtocol.isProxy:2:6: note: protocol requires function 'isProxy()' with type '() -> Bool'
1 | protocol NSObjectProtocol {
2 | func isProxy() -> Bool}
  |      `- note: protocol requires function 'isProxy()' with type '() -> Bool'
3 |
Foundation.NSObjectProtocol.description:2:5: note: protocol requires property 'description' with type 'String'
1 | protocol NSObjectProtocol {
2 | var description: String { get }}
  |     `- note: protocol requires property 'description' with type 'String'
3 |
[6/6] Compiling LoadableViews LoadableView.swift
/host/spi-builder-workspace/Sources/LoadableViews/LoadableView.swift:40:27: error: cannot find type 'PlatformView' in scope
38 |
39 |     /// View that serves as a container for loadable view. Loadable views are added to container view in `setupNib(_:)` method.
40 |     var nibContainerView: PlatformView { get }
   |                           `- error: cannot find type 'PlatformView' in scope
41 |
42 |     /// Method that loads view from single view xib with `nibName`.
/host/spi-builder-workspace/Sources/LoadableViews/LoadableView.swift:45:23: error: cannot find type 'PlatformView' in scope
43 |     ///
44 |     /// - returns: loaded from xib view
45 |     func loadNib() -> PlatformView
   |                       `- error: cannot find type 'PlatformView' in scope
46 |
47 |     /// Method that is used to load and configure loadableView. It is then added to `nibContainerView` as a subview. This view receives constraints of same width and height as container view.
/host/spi-builder-workspace/Sources/LoadableViews/LoadableView.swift:57:11: error: cannot find type 'PlatformView' in scope
55 | }
56 |
57 | extension PlatformView {
   |           `- error: cannot find type 'PlatformView' in scope
58 |     /// View usually serves itself as a default container for loadable views
59 |     @objc dynamic open var nibContainerView : PlatformView { return self }
/host/spi-builder-workspace/Sources/LoadableViews/LoadableView.swift:73:21: error: initializer does not override a designated initializer from its superclass
71 | open class LoadableView: PlatformView, NibLoadableProtocol {
72 |
73 |     public override init(frame: CGRect) {
   |                     `- error: initializer does not override a designated initializer from its superclass
74 |         super.init(frame: frame)
75 |         setupNib()
/host/spi-builder-workspace/Sources/LoadableViews/LoadableView.swift:71:26: error: cannot find type 'PlatformView' in scope
69 |
70 | /// UIView subclass, that can be loaded into different xib or storyboard by simply referencing it's class.
71 | open class LoadableView: PlatformView, NibLoadableProtocol {
   |                          `- error: cannot find type 'PlatformView' in scope
72 |
73 |     public override init(frame: CGRect) {
/host/spi-builder-workspace/Sources/LoadableViews/LoadableView.swift:71:12: error: type 'LoadableView' does not conform to protocol 'NibLoadableProtocol'
69 |
70 | /// UIView subclass, that can be loaded into different xib or storyboard by simply referencing it's class.
71 | open class LoadableView: PlatformView, NibLoadableProtocol {
   |            `- error: type 'LoadableView' does not conform to protocol 'NibLoadableProtocol'
72 |
73 |     public override init(frame: CGRect) {
/host/spi-builder-workspace/Sources/LoadableViews/LoadableView.swift:71:12: error: type 'LoadableView' does not conform to protocol 'NSObjectProtocol'
49 |
50 |     /// Name of .xib file to load view from.
51 |     var nibName : String { get }
   |         `- note: protocol requires property 'nibName' with type 'String'
52 |
53 |     /// Bundle to load nib from
54 |     var bundle: Bundle { get }
   |         `- note: protocol requires property 'bundle' with type 'Bundle'
55 | }
56 |
   :
69 |
70 | /// UIView subclass, that can be loaded into different xib or storyboard by simply referencing it's class.
71 | open class LoadableView: PlatformView, NibLoadableProtocol {
   |            |- error: type 'LoadableView' does not conform to protocol 'NSObjectProtocol'
   |            `- note: add stubs for conformance
72 |
73 |     public override init(frame: CGRect) {
Foundation.NSObjectProtocol.isEqual:2:6: note: protocol requires function 'isEqual' with type '(Any?) -> Bool'
1 | protocol NSObjectProtocol {
2 | func isEqual(_ object: Any?) -> Bool}
  |      `- note: protocol requires function 'isEqual' with type '(Any?) -> Bool'
3 |
Foundation.NSObjectProtocol.hash:2:5: note: protocol requires property 'hash' with type 'Int'
1 | protocol NSObjectProtocol {
2 | var hash: Int { get }}
  |     `- note: protocol requires property 'hash' with type 'Int'
3 |
Foundation.NSObjectProtocol.self:2:6: note: protocol requires function 'self()' with type '() -> Self'
1 | protocol NSObjectProtocol {
2 | func `self`() -> Self}
  |      `- note: protocol requires function 'self()' with type '() -> Self'
3 |
Foundation.NSObjectProtocol.isProxy:2:6: note: protocol requires function 'isProxy()' with type '() -> Bool'
1 | protocol NSObjectProtocol {
2 | func isProxy() -> Bool}
  |      `- note: protocol requires function 'isProxy()' with type '() -> Bool'
3 |
Foundation.NSObjectProtocol.description:2:5: note: protocol requires property 'description' with type 'String'
1 | protocol NSObjectProtocol {
2 | var description: String { get }}
  |     `- note: protocol requires property 'description' with type 'String'
3 |
/host/spi-builder-workspace/Sources/LoadableViews/LoadableView.swift:74:9: error: 'super' cannot be used in class 'LoadableView' because it has no superclass
72 |
73 |     public override init(frame: CGRect) {
74 |         super.init(frame: frame)
   |         `- error: 'super' cannot be used in class 'LoadableView' because it has no superclass
75 |         setupNib()
76 |     }
/host/spi-builder-workspace/Sources/LoadableViews/LoadableView.swift:79:9: error: 'super' cannot be used in class 'LoadableView' because it has no superclass
77 |
78 |     public required init?(coder aDecoder: NSCoder) {
79 |         super.init(coder: aDecoder)
   |         `- error: 'super' cannot be used in class 'LoadableView' because it has no superclass
80 |         setupNib()
81 |     }
/host/spi-builder-workspace/Sources/LoadableViews/LoadableView.swift:84:9: error: cannot find 'setupView' in scope
82 |
83 |     open func setupNib() {
84 |         setupView(loadNib(), inContainer: nibContainerView)
   |         `- error: cannot find 'setupView' in scope
85 |     }
86 | }
/host/spi-builder-workspace/Sources/LoadableViews/LoadableView.swift:84:19: error: cannot find 'loadNib' in scope
82 |
83 |     open func setupNib() {
84 |         setupView(loadNib(), inContainer: nibContainerView)
   |                   `- error: cannot find 'loadNib' in scope
85 |     }
86 | }
/host/spi-builder-workspace/Sources/LoadableViews/LoadableView.swift:84:43: error: cannot find 'nibContainerView' in scope
82 |
83 |     open func setupNib() {
84 |         setupView(loadNib(), inContainer: nibContainerView)
   |                                           `- error: cannot find 'nibContainerView' in scope
85 |     }
86 | }
/host/spi-builder-workspace/Sources/LoadableViews/LoadableView.swift:59:47: error: cannot find type 'PlatformView' in scope
57 | extension PlatformView {
58 |     /// View usually serves itself as a default container for loadable views
59 |     @objc dynamic open var nibContainerView : PlatformView { return self }
   |                                               `- error: cannot find type 'PlatformView' in scope
60 |
61 |     /// Default nibName for all UIViews, equal to name of the class.
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-1":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.1-latest swift build --triple x86_64-unknown-linux-gnu 2>&1
basic-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:3bdcac04179f4ed3e5b8e9dbd6e74bbf5ebc0f4fde48bbaad7d1e5c757e65bcb
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.1-latest
[0/1] Planning build
Building for debugging...
[0/1] Write swift-version-24593BA9C3E375BF.txt
error: emit-module command failed with exit code 1 (use -v to see invocation)
[2/5] Compiling LoadableViews LoadableView+macOS.swift
[3/5] Compiling LoadableViews LoadableView+UIKit.swift
[4/5] Emitting module LoadableViews
/host/spi-builder-workspace/Sources/LoadableViews/LoadableView.swift:40:27: error: cannot find type 'PlatformView' in scope
38 |
39 |     /// View that serves as a container for loadable view. Loadable views are added to container view in `setupNib(_:)` method.
40 |     var nibContainerView: PlatformView { get }
   |                           `- error: cannot find type 'PlatformView' in scope
41 |
42 |     /// Method that loads view from single view xib with `nibName`.
/host/spi-builder-workspace/Sources/LoadableViews/LoadableView.swift:45:23: error: cannot find type 'PlatformView' in scope
43 |     ///
44 |     /// - returns: loaded from xib view
45 |     func loadNib() -> PlatformView
   |                       `- error: cannot find type 'PlatformView' in scope
46 |
47 |     /// Method that is used to load and configure loadableView. It is then added to `nibContainerView` as a subview. This view receives constraints of same width and height as container view.
/host/spi-builder-workspace/Sources/LoadableViews/LoadableView.swift:57:11: error: cannot find type 'PlatformView' in scope
55 | }
56 |
57 | extension PlatformView {
   |           `- error: cannot find type 'PlatformView' in scope
58 |     /// View usually serves itself as a default container for loadable views
59 |     @objc dynamic open var nibContainerView : PlatformView { return self }
/host/spi-builder-workspace/Sources/LoadableViews/LoadableView.swift:73:21: error: initializer does not override a designated initializer from its superclass
71 | open class LoadableView: PlatformView, NibLoadableProtocol {
72 |
73 |     public override init(frame: CGRect) {
   |                     `- error: initializer does not override a designated initializer from its superclass
74 |         super.init(frame: frame)
75 |         setupNib()
/host/spi-builder-workspace/Sources/LoadableViews/LoadableView.swift:71:26: error: cannot find type 'PlatformView' in scope
69 |
70 | /// UIView subclass, that can be loaded into different xib or storyboard by simply referencing it's class.
71 | open class LoadableView: PlatformView, NibLoadableProtocol {
   |                          `- error: cannot find type 'PlatformView' in scope
72 |
73 |     public override init(frame: CGRect) {
/host/spi-builder-workspace/Sources/LoadableViews/LoadableView.swift:71:12: error: type 'LoadableView' does not conform to protocol 'NibLoadableProtocol'
69 |
70 | /// UIView subclass, that can be loaded into different xib or storyboard by simply referencing it's class.
71 | open class LoadableView: PlatformView, NibLoadableProtocol {
   |            `- error: type 'LoadableView' does not conform to protocol 'NibLoadableProtocol'
72 |
73 |     public override init(frame: CGRect) {
/host/spi-builder-workspace/Sources/LoadableViews/LoadableView.swift:71:12: error: type 'LoadableView' does not conform to protocol 'NSObjectProtocol'
49 |
50 |     /// Name of .xib file to load view from.
51 |     var nibName : String { get }
   |         `- note: protocol requires property 'nibName' with type 'String'
52 |
53 |     /// Bundle to load nib from
54 |     var bundle: Bundle { get }
   |         `- note: protocol requires property 'bundle' with type 'Bundle'
55 | }
56 |
   :
69 |
70 | /// UIView subclass, that can be loaded into different xib or storyboard by simply referencing it's class.
71 | open class LoadableView: PlatformView, NibLoadableProtocol {
   |            |- error: type 'LoadableView' does not conform to protocol 'NSObjectProtocol'
   |            `- note: add stubs for conformance
72 |
73 |     public override init(frame: CGRect) {
Foundation.NSObjectProtocol.isEqual:2:6: note: protocol requires function 'isEqual' with type '(Any?) -> Bool'
1 | protocol NSObjectProtocol {
2 | func isEqual(_ object: Any?) -> Bool}
  |      `- note: protocol requires function 'isEqual' with type '(Any?) -> Bool'
3 |
Foundation.NSObjectProtocol.hash:2:5: note: protocol requires property 'hash' with type 'Int'
1 | protocol NSObjectProtocol {
2 | var hash: Int { get }}
  |     `- note: protocol requires property 'hash' with type 'Int'
3 |
Foundation.NSObjectProtocol.self:2:6: note: protocol requires function 'self()' with type '() -> Self'
1 | protocol NSObjectProtocol {
2 | func `self`() -> Self}
  |      `- note: protocol requires function 'self()' with type '() -> Self'
3 |
Foundation.NSObjectProtocol.isProxy:2:6: note: protocol requires function 'isProxy()' with type '() -> Bool'
1 | protocol NSObjectProtocol {
2 | func isProxy() -> Bool}
  |      `- note: protocol requires function 'isProxy()' with type '() -> Bool'
3 |
Foundation.NSObjectProtocol.description:2:5: note: protocol requires property 'description' with type 'String'
1 | protocol NSObjectProtocol {
2 | var description: String { get }}
  |     `- note: protocol requires property 'description' with type 'String'
3 |
[5/5] Compiling LoadableViews LoadableView.swift
/host/spi-builder-workspace/Sources/LoadableViews/LoadableView.swift:40:27: error: cannot find type 'PlatformView' in scope
38 |
39 |     /// View that serves as a container for loadable view. Loadable views are added to container view in `setupNib(_:)` method.
40 |     var nibContainerView: PlatformView { get }
   |                           `- error: cannot find type 'PlatformView' in scope
41 |
42 |     /// Method that loads view from single view xib with `nibName`.
/host/spi-builder-workspace/Sources/LoadableViews/LoadableView.swift:45:23: error: cannot find type 'PlatformView' in scope
43 |     ///
44 |     /// - returns: loaded from xib view
45 |     func loadNib() -> PlatformView
   |                       `- error: cannot find type 'PlatformView' in scope
46 |
47 |     /// Method that is used to load and configure loadableView. It is then added to `nibContainerView` as a subview. This view receives constraints of same width and height as container view.
/host/spi-builder-workspace/Sources/LoadableViews/LoadableView.swift:57:11: error: cannot find type 'PlatformView' in scope
55 | }
56 |
57 | extension PlatformView {
   |           `- error: cannot find type 'PlatformView' in scope
58 |     /// View usually serves itself as a default container for loadable views
59 |     @objc dynamic open var nibContainerView : PlatformView { return self }
/host/spi-builder-workspace/Sources/LoadableViews/LoadableView.swift:73:21: error: initializer does not override a designated initializer from its superclass
71 | open class LoadableView: PlatformView, NibLoadableProtocol {
72 |
73 |     public override init(frame: CGRect) {
   |                     `- error: initializer does not override a designated initializer from its superclass
74 |         super.init(frame: frame)
75 |         setupNib()
/host/spi-builder-workspace/Sources/LoadableViews/LoadableView.swift:71:26: error: cannot find type 'PlatformView' in scope
69 |
70 | /// UIView subclass, that can be loaded into different xib or storyboard by simply referencing it's class.
71 | open class LoadableView: PlatformView, NibLoadableProtocol {
   |                          `- error: cannot find type 'PlatformView' in scope
72 |
73 |     public override init(frame: CGRect) {
/host/spi-builder-workspace/Sources/LoadableViews/LoadableView.swift:71:12: error: type 'LoadableView' does not conform to protocol 'NibLoadableProtocol'
69 |
70 | /// UIView subclass, that can be loaded into different xib or storyboard by simply referencing it's class.
71 | open class LoadableView: PlatformView, NibLoadableProtocol {
   |            `- error: type 'LoadableView' does not conform to protocol 'NibLoadableProtocol'
72 |
73 |     public override init(frame: CGRect) {
/host/spi-builder-workspace/Sources/LoadableViews/LoadableView.swift:71:12: error: type 'LoadableView' does not conform to protocol 'NSObjectProtocol'
49 |
50 |     /// Name of .xib file to load view from.
51 |     var nibName : String { get }
   |         `- note: protocol requires property 'nibName' with type 'String'
52 |
53 |     /// Bundle to load nib from
54 |     var bundle: Bundle { get }
   |         `- note: protocol requires property 'bundle' with type 'Bundle'
55 | }
56 |
   :
69 |
70 | /// UIView subclass, that can be loaded into different xib or storyboard by simply referencing it's class.
71 | open class LoadableView: PlatformView, NibLoadableProtocol {
   |            |- error: type 'LoadableView' does not conform to protocol 'NSObjectProtocol'
   |            `- note: add stubs for conformance
72 |
73 |     public override init(frame: CGRect) {
Foundation.NSObjectProtocol.isEqual:2:6: note: protocol requires function 'isEqual' with type '(Any?) -> Bool'
1 | protocol NSObjectProtocol {
2 | func isEqual(_ object: Any?) -> Bool}
  |      `- note: protocol requires function 'isEqual' with type '(Any?) -> Bool'
3 |
Foundation.NSObjectProtocol.hash:2:5: note: protocol requires property 'hash' with type 'Int'
1 | protocol NSObjectProtocol {
2 | var hash: Int { get }}
  |     `- note: protocol requires property 'hash' with type 'Int'
3 |
Foundation.NSObjectProtocol.self:2:6: note: protocol requires function 'self()' with type '() -> Self'
1 | protocol NSObjectProtocol {
2 | func `self`() -> Self}
  |      `- note: protocol requires function 'self()' with type '() -> Self'
3 |
Foundation.NSObjectProtocol.isProxy:2:6: note: protocol requires function 'isProxy()' with type '() -> Bool'
1 | protocol NSObjectProtocol {
2 | func isProxy() -> Bool}
  |      `- note: protocol requires function 'isProxy()' with type '() -> Bool'
3 |
Foundation.NSObjectProtocol.description:2:5: note: protocol requires property 'description' with type 'String'
1 | protocol NSObjectProtocol {
2 | var description: String { get }}
  |     `- note: protocol requires property 'description' with type 'String'
3 |
/host/spi-builder-workspace/Sources/LoadableViews/LoadableView.swift:74:9: error: 'super' cannot be used in class 'LoadableView' because it has no superclass
72 |
73 |     public override init(frame: CGRect) {
74 |         super.init(frame: frame)
   |         `- error: 'super' cannot be used in class 'LoadableView' because it has no superclass
75 |         setupNib()
76 |     }
/host/spi-builder-workspace/Sources/LoadableViews/LoadableView.swift:79:9: error: 'super' cannot be used in class 'LoadableView' because it has no superclass
77 |
78 |     public required init?(coder aDecoder: NSCoder) {
79 |         super.init(coder: aDecoder)
   |         `- error: 'super' cannot be used in class 'LoadableView' because it has no superclass
80 |         setupNib()
81 |     }
/host/spi-builder-workspace/Sources/LoadableViews/LoadableView.swift:84:9: error: cannot find 'setupView' in scope
82 |
83 |     open func setupNib() {
84 |         setupView(loadNib(), inContainer: nibContainerView)
   |         `- error: cannot find 'setupView' in scope
85 |     }
86 | }
/host/spi-builder-workspace/Sources/LoadableViews/LoadableView.swift:84:19: error: cannot find 'loadNib' in scope
82 |
83 |     open func setupNib() {
84 |         setupView(loadNib(), inContainer: nibContainerView)
   |                   `- error: cannot find 'loadNib' in scope
85 |     }
86 | }
/host/spi-builder-workspace/Sources/LoadableViews/LoadableView.swift:84:43: error: cannot find 'nibContainerView' in scope
82 |
83 |     open func setupNib() {
84 |         setupView(loadNib(), inContainer: nibContainerView)
   |                                           `- error: cannot find 'nibContainerView' in scope
85 |     }
86 | }
/host/spi-builder-workspace/Sources/LoadableViews/LoadableView.swift:59:47: error: cannot find type 'PlatformView' in scope
57 | extension PlatformView {
58 |     /// View usually serves itself as a default container for loadable views
59 |     @objc dynamic open var nibContainerView : PlatformView { return self }
   |                                               `- error: cannot find type 'PlatformView' in scope
60 |
61 |     /// Default nibName for all UIViews, equal to name of the class.
BUILD FAILURE 6.1 linux