Giter VIP home page Giter VIP logo

nsobject-rx's People

Contributors

ashfurrow avatar benemdon avatar dependabot[bot] avatar engali94 avatar fassko avatar freak4pc avatar guerrix avatar gurpartap avatar hiragram avatar ivanbruel avatar jdisho avatar jinsu3758 avatar lbrndnr avatar libec avatar lipka avatar mono0926 avatar mtfum avatar orta avatar pawurb avatar pomozoff avatar rafaelplantard avatar shenyj avatar tcurdt avatar tomisacat avatar toshi0383 avatar ttozzi avatar vkt0r avatar xixi197 avatar zh-wowtv avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

nsobject-rx's Issues

New release?

The latest release has

github "ReactiveX/RxSwift" "develop"

and I would like to use it with

github "ReactiveX/RxSwift" "3.2.0"

which is a bit of a problem.

Switch CI to Circle

Travis builds are taking hours just to queue, we need to switch to Circle. I'll try to get to this unless someone wants to tackle it first 👍

Allowing set on disposeBag

I ran into an issue where we are subscribing to changes of a UITextField in a UITableViewCell instance. Because the cells can be re-used, we should dispose in the prepareForReuse - we cannot wait for a deinit. Otherwise, we end up with multiple subscribers on a UITextField which really confuses things.

I first attempted to implement via a

    override func prepareForReuse() {
        super.prepareForReuse()
        
        disposeBag = DisposeBag()
    }

But then we get the Swift error "Cannot assign to property: 'self' is immutable". There are a number of articles about this issue, and from what I have seen, the simplest and cleanest solution is to modify the HasDisposeBag protocol like so:

public protocol HasDisposeBag: class {

    /// a unique Rx DisposeBag instance
    var disposeBag: DisposeBag { get set }
}

This allows the setting of the disposeBag within the UITableViewCell and thus keep the subscribers to the correct set.

There may be other solutions available, but if this is a good solution, it would be great to see it changed in the original source (I am currently using a fork I made with just this one change).

Thank you

Move to Org

Specifically, this one: https://github.com/RxSwiftCommunity

Prep:

  • Anything?

After:

  • Update podspecs with new remote URL
  • Update CI badge
  • Update CI settings
  • Tidy up readme and other things that reference "Ash Furrow", since it'll be a community project.
  • Fork the repo back to my personal account (I really don't feel like sending a PR to fix CocoaPods trunk, forking is so much easier)

iOS Crash, memory management error

iOS Crash, I think it is caused by memory management error when using third party library NSObject+Rx and Then?

Could you give me some tips?

Firebase crashlytics reports,

已崩溃:com.apple.main-thread
EXC_BREAKPOINT 0x0000000104a5be14

0
IOS
LoginRegisterInputView.swift - 第 328 行
closure #5 in LoginRegisterInputView.initRegisterUI()

1
Then
$S4ThenAAPAARlzCrlE4thenyxyxKXEKF + 32

2
IOS
LoginRegisterInputView.swift - 第 314 行
LoginRegisterInputView.initRegisterUI()

3
IOS
LoginRegisterInputView.swift - 第 225 行
LoginRegisterInputView.initUI(style:)

4
IOS
LoginRegisterInputView.swift - 第 42 行
specialized LoginRegisterInputView.init(style:rootVC:)

Here is the code:

let registerProtocolLabel = UILabel().then {
            let string = "RegisterIterm".localized().replacingOccurrences(of: "<a>", with: "+").replacingOccurrences(of: "</a>", with: "+")
            let array:[String] = string.components(separatedBy: "+")
            $0.font = mThemeMinFont
            if array.count > 0 {
                $0.attributedText = (array[0].color(mRGBA(120, 120, 120, 1)) + array[1].color(mThemePinkColor).underline + array[2].color(mRGBA(120, 120, 120, 1))).attributedText
            }
            $0.textAlignment = .left
            $0.numberOfLines = 0
            $0.lineBreakMode = .byWordWrapping
            $0.rx.tapGesture().when(.recognized)
                .subscribe(onNext:{ _ in
                 AppUtils.jumpToWebView(route: AppUtils.getFunctionUrl(.term))
                }).disposed(by: rx.disposeBag)
        }

The code is of bugs and nasty. It is not written by me, not by my colleague.

Now I am in charge of the bugs.

Reading from then, it is very easy.
I have a crash question, And I asked in [StackOverFlow](iOS Crash, memory management error when using NSObject+Rx and Then?)

The object just set its properties in the closure. It does not visit other properties. So it is very ARC, it will not interfere other objects' memory management.

While my colleague's code is not of Then, it did two much.

I think the crash is caused by NSObject+Rx.

NSObject+Rx's code is easy, just code sugar.

/// a unique DisposeBag that is related to the Reactive.Base instance only for Reference type
    public var disposeBag: DisposeBag {
        get {
            return synchronizedBag {
                if let disposeObject = objc_getAssociatedObject(base, &disposeBagContext) as? DisposeBag {
                    return disposeObject
                }
                let disposeObject = DisposeBag()
                objc_setAssociatedObject(base, &disposeBagContext, disposeObject, .OBJC_ASSOCIATION_RETAIN_NONATOMIC)
                return disposeObject
            }
        }

Reading from the source code of NSObject+Rx, in the scene above ,I think
rx.disposeBag is equal to label.rx.disposeBag.

It may cause bugs.

RxSwift's source code is a little hard to read.

So what is the crash reason?

Problems at release a new version at CocoaPods

Before all I run:

pod cache clean --all
pod repo update

When I run: pod trunk push NSObject+Rx.podspec --allow-warnings:

Rafael-Ferreira:NSObject-Rx rafaelferreira$ pod trunk push NSObject+Rx.podspec --allow-warnings
Updating spec repo `master`
Validating podspec
 -> NSObject+Rx (2.2.0)
    - ERROR | [OSX] xcodebuild: Returned an unsuccessful exit code. You can use `--verbose` for more information.
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/AddRef.swift:40:39: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Amb.swift:17:48: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Amb.swift:51:44: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Amb.swift:117:40: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/AnonymousObservable.swift:51:40: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/AnyObserver.swift:43:34: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Subjects/BehaviorSubject.swift:109:53: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Subjects/BehaviorSubject.swift:114:51: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Buffer.swift:25:40: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Buffer.swift:32:52: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Catch.swift:89:39: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Catch.swift:98:58: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Catch.swift:148:37: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Catch.swift:157:40: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/CombineLatest+arity.swift:25:5: warning: 'warn_unused_result' attribute behavior is now the default
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/CombineLatest+arity.swift:86:39: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/CombineLatest+arity.swift:106:5: warning: 'warn_unused_result' attribute behavior is now the default
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/CombineLatest+arity.swift:174:39: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/CombineLatest+arity.swift:194:5: warning: 'warn_unused_result' attribute behavior is now the default
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/CombineLatest+arity.swift:269:39: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/CombineLatest+arity.swift:289:5: warning: 'warn_unused_result' attribute behavior is now the default
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/CombineLatest+arity.swift:371:39: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/CombineLatest+arity.swift:391:5: warning: 'warn_unused_result' attribute behavior is now the default
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/CombineLatest+arity.swift:480:39: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/CombineLatest+arity.swift:500:5: warning: 'warn_unused_result' attribute behavior is now the default
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/CombineLatest+arity.swift:596:39: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/CombineLatest+arity.swift:616:5: warning: 'warn_unused_result' attribute behavior is now the default
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/CombineLatest+arity.swift:719:39: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/CombineLatest+CollectionType.swift:11:77: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/CombineLatest+CollectionType.swift:107:56: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/CombineLatest+CollectionType.swift:120:40: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Concat.swift:12:51: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Concat.swift:47:30: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Concat.swift:58:39: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/ConnectableObservable.swift:93:46: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Debug.swift:72:39: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Deferred.swift:11:55: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Deferred.swift:56:39: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/DelaySubscription.swift:11:58: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/DelaySubscription.swift:44:40: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/DistinctUntilChanged.swift:65:39: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Do.swift:48:39: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/ElementAt.swift:12:49: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/ElementAt.swift:74:39: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Empty.swift:12:46: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Error.swift:18:46: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Filter.swift:55:39: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Generate.swift:66:40: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/HistoricalSchedulerTimeConverter.swift:66:35: warning: extraneous duplicate parameter name; 'time' already has an argument label
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/ImmediateSchedulerType.swift:33:65: error: function types cannot have argument labels; use '_' before 'state'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/ImmediateSchedulerType.swift:33:79: error: function types cannot have argument labels; use '_' before 'recurse'
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Just.swift:42:46: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Just.swift:56:46: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Map.swift:94:39: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Map.swift:129:39: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Merge.swift:13:74: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Merge.swift:61:70: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Merge.swift:155:39: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Merge.swift:164:74: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Merge.swift:176:83: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Merge.swift:191:92: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Merge.swift:209:88: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Merge.swift:231:79: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Merge.swift:273:75: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Merge.swift:365:39: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Merge.swift:384:39: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Merge.swift:404:39: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Merge.swift:418:39: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Multicast.swift:66:39: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Never.swift:12:46: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Aggregate.swift:27:5: warning: 'warn_unused_result' attribute behavior is now the default
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Aggregate.swift:44:5: warning: 'warn_unused_result' attribute behavior is now the default
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Aggregate.swift:59:5: warning: 'warn_unused_result' attribute behavior is now the default
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Binding.swift:27:5: warning: 'warn_unused_result' attribute behavior is now the default
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Binding.swift:28:42: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Binding.swift:46:5: warning: 'warn_unused_result' attribute behavior is now the default
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Binding.swift:47:45: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Binding.swift:70:5: warning: 'warn_unused_result' attribute behavior is now the default
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Binding.swift:90:5: warning: 'warn_unused_result' attribute behavior is now the default
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Binding.swift:105:5: warning: 'warn_unused_result' attribute behavior is now the default
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Binding.swift:123:5: warning: 'warn_unused_result' attribute behavior is now the default
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Binding.swift:142:5: warning: 'warn_unused_result' attribute behavior is now the default
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Binding.swift:162:5: warning: 'warn_unused_result' attribute behavior is now the default
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Binding.swift:185:5: warning: 'warn_unused_result' attribute behavior is now the default
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Concurrency.swift:26:5: warning: 'warn_unused_result' attribute behavior is now the default
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Concurrency.swift:57:5: warning: 'warn_unused_result' attribute behavior is now the default
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Creation.swift:22:5: warning: 'warn_unused_result' attribute behavior is now the default
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Creation.swift:36:5: warning: 'warn_unused_result' attribute behavior is now the default
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Creation.swift:50:5: warning: 'warn_unused_result' attribute behavior is now the default
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Creation.swift:65:5: warning: 'warn_unused_result' attribute behavior is now the default
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Creation.swift:79:5: warning: 'warn_unused_result' attribute behavior is now the default
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Creation.swift:93:5: warning: 'warn_unused_result' attribute behavior is now the default
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Creation.swift:109:5: warning: 'warn_unused_result' attribute behavior is now the default
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Creation.swift:124:5: warning: 'warn_unused_result' attribute behavior is now the default
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Creation.swift:142:5: warning: 'warn_unused_result' attribute behavior is now the default
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Creation.swift:143:33: warning: extraneous duplicate parameter name; 'initialState' already has an argument label
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Creation.swift:156:5: warning: 'warn_unused_result' attribute behavior is now the default
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Creation.swift:170:5: warning: 'warn_unused_result' attribute behavior is now the default
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Creation.swift:187:5: warning: 'warn_unused_result' attribute behavior is now the default
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Creation.swift:188:30: warning: extraneous duplicate parameter name; 'start' already has an argument label
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Creation.swift:201:5: warning: 'warn_unused_result' attribute behavior is now the default
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Creation.swift:215:5: warning: 'warn_unused_result' attribute behavior is now the default
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Debug.swift:23:5: warning: 'warn_unused_result' attribute behavior is now the default
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observable+Extensions.swift:18:5: warning: 'warn_unused_result' attribute behavior is now the default
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observable+Extensions.swift:19:32: error: function types cannot have argument labels; use '_' before 'event'
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observable+Extensions.swift:37:5: warning: 'warn_unused_result' attribute behavior is now the default
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observable+Extensions.swift:38:27: warning: extraneous duplicate parameter name; 'onNext' already has an argument label
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observable+Extensions.swift:74:5: warning: 'warn_unused_result' attribute behavior is now the default
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observable+Extensions.swift:91:5: warning: 'warn_unused_result' attribute behavior is now the default
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observable+Extensions.swift:108:5: warning: 'warn_unused_result' attribute behavior is now the default
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observable+Extensions.swift:124:5: warning: 'warn_unused_result' attribute behavior is now the default
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observable+Extensions.swift:125:40: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Multiple.swift:23:5: warning: 'warn_unused_result' attribute behavior is now the default
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Multiple.swift:41:5: warning: 'warn_unused_result' attribute behavior is now the default
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Multiple.swift:62:5: warning: 'warn_unused_result' attribute behavior is now the default
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Multiple.swift:80:5: warning: 'warn_unused_result' attribute behavior is now the default
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Multiple.swift:81:53: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Multiple.swift:101:5: warning: 'warn_unused_result' attribute behavior is now the default
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Multiple.swift:124:5: warning: 'warn_unused_result' attribute behavior is now the default
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Multiple.swift:140:5: warning: 'warn_unused_result' attribute behavior is now the default
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Multiple.swift:157:5: warning: 'warn_unused_result' attribute behavior is now the default
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Multiple.swift:170:5: warning: 'warn_unused_result' attribute behavior is now the default
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Multiple.swift:171:23: warning: extraneous duplicate parameter name; 'maxConcurrent' already has an argument label
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Multiple.swift:189:5: warning: 'warn_unused_result' attribute behavior is now the default
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Multiple.swift:203:5: warning: 'warn_unused_result' attribute behavior is now the default
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Multiple.swift:219:5: warning: 'warn_unused_result' attribute behavior is now the default
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Multiple.swift:238:5: warning: 'warn_unused_result' attribute behavior is now the default
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Multiple.swift:257:5: warning: 'warn_unused_result' attribute behavior is now the default
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Multiple.swift:276:5: warning: 'warn_unused_result' attribute behavior is now the default
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Multiple.swift:277:40: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Multiple.swift:293:5: warning: 'warn_unused_result' attribute behavior is now the default
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Single.swift:22:5: warning: 'warn_unused_result' attribute behavior is now the default
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Single.swift:38:5: warning: 'warn_unused_result' attribute behavior is now the default
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Single.swift:52:5: warning: 'warn_unused_result' attribute behavior is now the default
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Single.swift:53:49: error: function types cannot have argument labels; use '_' before 'lhs'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Single.swift:53:57: error: function types cannot have argument labels; use '_' before 'rhs'
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Single.swift:67:5: warning: 'warn_unused_result' attribute behavior is now the default
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Single.swift:68:82: error: function types cannot have argument labels; use '_' before 'lhs'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Single.swift:68:90: error: function types cannot have argument labels; use '_' before 'rhs'
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Single.swift:86:5: warning: 'warn_unused_result' attribute behavior is now the default
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Single.swift:102:5: warning: 'warn_unused_result' attribute behavior is now the default
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Single.swift:103:47: error: expected ':' following argumant label and parameter name
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Single.swift:103:47: error: expected type
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Single.swift:103:91: error: expected ':' following argumant label and parameter name
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Single.swift:103:91: error: expected type
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Single.swift:103:22: warning: extraneous duplicate parameter name; 'onNext' already has an argument label
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Single.swift:123:5: warning: 'warn_unused_result' attribute behavior is now the default
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Single.swift:124:44: error: expected ':' following argumant label and parameter name
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Single.swift:124:44: error: expected type
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Single.swift:135:5: warning: 'warn_unused_result' attribute behavior is now the default
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Single.swift:136:54: error: expected ':' following argumant label and parameter name
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Single.swift:136:54: error: expected type
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Single.swift:147:5: warning: 'warn_unused_result' attribute behavior is now the default
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Single.swift:166:5: warning: 'warn_unused_result' attribute behavior is now the default
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Single.swift:186:5: warning: 'warn_unused_result' attribute behavior is now the default
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Single.swift:201:5: warning: 'warn_unused_result' attribute behavior is now the default
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Single.swift:216:5: warning: 'warn_unused_result' attribute behavior is now the default
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Single.swift:231:5: warning: 'warn_unused_result' attribute behavior is now the default
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Single.swift:253:5: warning: 'warn_unused_result' attribute behavior is now the default
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+StandardSequenceOperators.swift:23:5: warning: 'warn_unused_result' attribute behavior is now the default
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+StandardSequenceOperators.swift:42:5: warning: 'warn_unused_result' attribute behavior is now the default
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+StandardSequenceOperators.swift:58:5: warning: 'warn_unused_result' attribute behavior is now the default
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+StandardSequenceOperators.swift:77:5: warning: 'warn_unused_result' attribute behavior is now the default
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+StandardSequenceOperators.swift:103:5: warning: 'warn_unused_result' attribute behavior is now the default
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+StandardSequenceOperators.swift:123:5: warning: 'warn_unused_result' attribute behavior is now the default
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+StandardSequenceOperators.swift:142:5: warning: 'warn_unused_result' attribute behavior is now the default
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+StandardSequenceOperators.swift:156:5: warning: 'warn_unused_result' attribute behavior is now the default
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+StandardSequenceOperators.swift:175:5: warning: 'warn_unused_result' attribute behavior is now the default
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+StandardSequenceOperators.swift:189:5: warning: 'warn_unused_result' attribute behavior is now the default
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+StandardSequenceOperators.swift:208:5: warning: 'warn_unused_result' attribute behavior is now the default
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+StandardSequenceOperators.swift:222:5: warning: 'warn_unused_result' attribute behavior is now the default
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+StandardSequenceOperators.swift:242:5: warning: 'warn_unused_result' attribute behavior is now the default
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+StandardSequenceOperators.swift:264:5: warning: 'warn_unused_result' attribute behavior is now the default
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+StandardSequenceOperators.swift:283:5: warning: 'warn_unused_result' attribute behavior is now the default
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+StandardSequenceOperators.swift:302:5: warning: 'warn_unused_result' attribute behavior is now the default
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+StandardSequenceOperators.swift:317:5: warning: 'warn_unused_result' attribute behavior is now the default
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Time.swift:25:5: warning: 'warn_unused_result' attribute behavior is now the default
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Time.swift:42:5: warning: 'warn_unused_result' attribute behavior is now the default
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Time.swift:65:5: warning: 'warn_unused_result' attribute behavior is now the default
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Time.swift:82:5: warning: 'warn_unused_result' attribute behavior is now the default
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Time.swift:105:5: warning: 'warn_unused_result' attribute behavior is now the default
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Time.swift:129:5: warning: 'warn_unused_result' attribute behavior is now the default
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Time.swift:149:5: warning: 'warn_unused_result' attribute behavior is now the default
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Time.swift:167:5: warning: 'warn_unused_result' attribute behavior is now the default
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Time.swift:189:5: warning: 'warn_unused_result' attribute behavior is now the default
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Time.swift:212:5: warning: 'warn_unused_result' attribute behavior is now the default
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Time.swift:213:24: warning: extraneous duplicate parameter name; 'timeSpan' already has an argument label
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Time.swift:233:5: warning: 'warn_unused_result' attribute behavior is now the default
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Time.swift:234:24: warning: extraneous duplicate parameter name; 'timeSpan' already has an argument label
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Time.swift:253:5: warning: 'warn_unused_result' attribute behavior is now the default
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Time.swift:269:5: warning: 'warn_unused_result' attribute behavior is now the default
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Time.swift:270:54: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observable.swift:28:43: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/ObservableType.swift:43:5: warning: 'warn_unused_result' attribute behavior is now the default
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/ObservableType.swift:44:36: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/ObservableType.swift:53:5: warning: 'warn_unused_result' attribute behavior is now the default
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/ObserveOn.swift:24:40: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/ObserveOnSerialDispatchQueue.swift:69:40: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Platform/Platform.Darwin.swift:25:85: warning: 'protocol<...>' composition syntax is deprecated; join the protocols using '&'
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Platform/Platform.Darwin.swift:37:62: warning: 'protocol<...>' composition syntax is deprecated; join the protocols using '&'
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Producer.swift:16:46: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Producer.swift:27:31: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Subjects/PublishSubject.swift:94:53: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Subjects/PublishSubject.swift:99:51: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Range.swift:30:40: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Range.swift:37:33: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/RecursiveScheduler.swift:15:26: error: function types cannot have argument labels; use '_' before 'state'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/RecursiveScheduler.swift:15:40: error: function types cannot have argument labels; use '_' before 'scheduler'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/RecursiveScheduler.swift:129:26: error: function types cannot have argument labels; use '_' before 'state'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/RecursiveScheduler.swift:129:40: error: function types cannot have argument labels; use '_' before 'recurse'
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Reduce.swift:69:39: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/RefCount.swift:11:67: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/RefCount.swift:79:39: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Disposables/RefCountDisposable.swift:63:48: error: expected ',' joining parts of a multi-clause condition
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Repeat.swift:20:40: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Subjects/ReplaySubject.swift:72:31: warning: extraneous duplicate parameter name; 'bufferSize' already has an argument label
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Subjects/ReplaySubject.swift:135:46: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Subjects/ReplaySubject.swift:140:51: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/RetryWhen.swift:11:99: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/RetryWhen.swift:38:108: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/RetryWhen.swift:82:104: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/RetryWhen.swift:134:83: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/RetryWhen.swift:145:40: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Rx.swift:26:23: error: 'inout' before a parameter name is not allowed, place it before the parameter type instead
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Rx.swift:35:23: error: 'inout' before a parameter name is not allowed, place it before the parameter type instead
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Sample.swift:11:60: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Sample.swift:124:39: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Scan.swift:11:57: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Scan.swift:59:40: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/SchedulerType.swift:71:83: error: function types cannot have argument labels; use '_' before 'state'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/SchedulerType.swift:71:97: error: function types cannot have argument labels; use '_' before 'scheduler'
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Sequence.swift:43:46: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/ShareReplay1.swift:33:46: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/ShareReplay1.swift:38:51: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/ShareReplay1WhileConnected.swift:31:46: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/ShareReplay1WhileConnected.swift:36:51: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/SingleAsync.swift:11:52: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/SingleAsync.swift:71:40: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Skip.swift:13:50: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Skip.swift:57:40: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Skip.swift:67:49: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Skip.swift:123:40: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/SkipUntil.swift:11:62: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/SkipUntil.swift:59:57: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/SkipUntil.swift:120:40: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/SkipWhile.swift:9:50: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/SkipWhile.swift:45:59: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/SkipWhile.swift:103:40: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/StartWith.swift:21:40: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/SubscribeOn.swift:11:59: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/SubscribeOn.swift:55:40: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Switch.swift:11:76: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Switch.swift:82:80: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Switch.swift:136:78: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Switch.swift:146:85: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Switch.swift:170:40: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Switch.swift:188:40: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Concurrency/SynchronizedSubscribeType.swift:12:50: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Concurrency/SynchronizedSubscribeType.swift:16:48: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observers/TailRecursiveSink.swift:21:58: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Take.swift:13:50: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Take.swift:64:40: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Take.swift:73:49: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Take.swift:139:40: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/TakeLast.swift:12:49: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/TakeLast.swift:58:40: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/TakeUntil.swift:11:62: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/TakeUntil.swift:58:57: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/TakeUntil.swift:115:40: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/TakeWhile.swift:11:50: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/TakeWhile.swift:55:59: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/TakeWhile.swift:121:40: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Throttle.swift:77:42: error: expected ',' joining parts of a multi-clause condition
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Throttle.swift:98:39: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Timeout.swift:11:48: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Timeout.swift:115:40: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Timer.swift:11:33: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Timer.swift:29:39: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Timer.swift:60:40: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/ToArray.swift:11:47: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/ToArray.swift:45:39: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Using.swift:11:71: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Using.swift:73:40: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/VirtualTimeConverterType.swift:64:28: warning: extraneous duplicate parameter name; 'time' already has an argument label
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Window.swift:11:52: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Window.swift:147:40: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/WithLatestFrom.swift:11:77: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/WithLatestFrom.swift:67:79: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/WithLatestFrom.swift:117:40: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Zip+arity.swift:25:5: warning: 'warn_unused_result' attribute behavior is now the default
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Zip+arity.swift:98:39: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Zip+arity.swift:118:5: warning: 'warn_unused_result' attribute behavior is now the default
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Zip+arity.swift:199:39: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Zip+arity.swift:219:5: warning: 'warn_unused_result' attribute behavior is now the default
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Zip+arity.swift:308:39: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Zip+arity.swift:328:5: warning: 'warn_unused_result' attribute behavior is now the default
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Zip+arity.swift:425:39: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Zip+arity.swift:445:5: warning: 'warn_unused_result' attribute behavior is now the default
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Zip+arity.swift:550:39: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Zip+arity.swift:570:5: warning: 'warn_unused_result' attribute behavior is now the default
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Zip+arity.swift:683:39: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Zip+arity.swift:703:5: warning: 'warn_unused_result' attribute behavior is now the default
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Zip+arity.swift:824:39: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Zip+CollectionType.swift:11:67: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Zip+CollectionType.swift:119:46: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Zip+CollectionType.swift:132:40: warning: 'where' clause next to generic parameters is deprecated and will be removed in the future version of Swift
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Errors.swift:18:7: error: 'ErrorType' has been renamed to 'Error'
    - NOTE  | xcodebuild:  Swift.ErrorType:2:18: note: 'ErrorType' has been explicitly marked unavailable here
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Creation.swift:193:11: error: 'SequenceType' has been renamed to 'Sequence'
    - NOTE  | xcodebuild:  Swift.SequenceType:2:18: note: 'SequenceType' has been explicitly marked unavailable here
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Multiple.swift:13:11: error: 'CollectionType' has been renamed to 'Collection'
    - NOTE  | xcodebuild:  Swift.CollectionType:2:18: note: 'CollectionType' has been explicitly marked unavailable here
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Multiple.swift:31:11: error: 'CollectionType' has been renamed to 'Collection'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Multiple.swift:86:11: error: 'SequenceType' has been renamed to 'Sequence'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Multiple.swift:108:11: error: 'CollectionType' has been renamed to 'Collection'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Multiple.swift:211:11: error: 'SequenceType' has been renamed to 'Sequence'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Multiple.swift:284:11: error: 'SequenceType' has been renamed to 'Sequence'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Platform/Platform.Darwin.swift:24:15: error: 'NSThread' has been renamed to 'Thread'
    - NOTE  | xcodebuild:  <unknown>:0: note: 'NSThread' was obsoleted in Swift 3
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Time.swift:94:37: error: 'SignedIntegerType' has been renamed to 'SignedInteger'
    - NOTE  | xcodebuild:  Swift.SignedIntegerType:2:18: note: 'SignedIntegerType' has been explicitly marked unavailable here
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Time.swift:72:38: error: 'SignedIntegerType' has been renamed to 'SignedInteger'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Creation.swift:176:38: error: 'SignedIntegerType' has been renamed to 'SignedInteger'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/AddRef.swift:30:30: error: single argument function types require parentheses
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/AddRef.swift:21:23: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Event.swift:22:16: error: 'ErrorType' has been renamed to 'Error'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/AddRef.swift:22:27: error: enum case 'Error' not found in type 'Event<O.E>'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/AddRef.swift:23:23: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/AddRef.swift:43:60: error: missing argument label 'disposable1' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Amb.swift:33:17: error: assigning non-escaping parameter 'sink' to an @escaping closure
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Amb.swift:27:46: note: parameter 'sink' is implicitly non-escaping
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Amb.swift:69:59: error: missing argument label 'disposable1' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Amb.swift:72:28: error: missing argument label 'event:' in call
    - ERROR | xcodebuild:  RxSwift/RxSwift/Concurrency/Lock.swift:66:24: error: @noescape is now an attribute on a parameter type, instead of on the parameter itself
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Amb.swift:85:36: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Amb.swift:101:44: error: '_left' is inaccessible due to 'private' protection level
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Amb.swift:109:17: note: '_left' declared here
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Amb.swift:102:44: error: '_right' is inaccessible due to 'private' protection level
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Amb.swift:110:17: note: '_right' declared here
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Disposables/AnonymousDisposable.swift:35:26: error: assigning non-escaping parameter 'disposeAction' to an @escaping closure
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Disposables/AnonymousDisposable.swift:34:19: note: parameter 'disposeAction' is implicitly non-escaping
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/Internal/AnonymousInvocable.swift:15:19: error: assigning non-escaping parameter 'action' to an @escaping closure
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/Internal/AnonymousInvocable.swift:14:12: note: parameter 'action' is implicitly non-escaping
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/AnonymousObservable.swift:28:23: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/AnonymousObservable.swift:29:15: error: enum case 'Error' not found in type 'Event<O.E>'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/AnonymousObservable.swift:31:27: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/AnonymousObservable.swift:48:29: error: assigning non-escaping parameter 'subscribeHandler' to an @escaping closure
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/AnonymousObservable.swift:47:12: note: parameter 'subscribeHandler' is implicitly non-escaping
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/AnonymousObservable.swift:53:36: error: missing argument label 'parent:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observers/AnonymousObserver.swift:14:30: error: single argument function types require parentheses
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observers/AnonymousObserver.swift:22:25: error: assigning non-escaping parameter 'eventHandler' to an @escaping closure
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observers/AnonymousObserver.swift:18:12: note: parameter 'eventHandler' is implicitly non-escaping
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/AnyObserver.swift:35:25: error: assigning non-escaping parameter 'eventHandler' to an @escaping closure
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/AnyObserver.swift:34:17: note: parameter 'eventHandler' is implicitly non-escaping
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/DataStructures/Queue.swift:19:25: error: 'SequenceType' has been renamed to 'Sequence'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Concurrency/AsyncLock.swift:51:32: error: missing argument label 'element:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Concurrency/AsyncLock.swift:74:43: error: missing argument label 'action:' in call
    - ERROR | xcodebuild:  RxSwift/RxSwift/DataStructures/Bag.swift:227:25: error: @noescape is now an attribute on a parameter type, instead of on the parameter itself
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/DataStructures/Bag.swift:39:25: error: missing argument label '_x:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/DataStructures/Bag.swift:42:25: error: missing argument label '_x:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/DataStructures/Bag.swift:168:25: error: incorrect argument label in call (have 'keepCapacity:', expected 'keepingCapacity:')
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/DataStructures/Bag.swift:169:31: error: incorrect argument label in call (have 'keepCapacity:', expected 'keepingCapacity:')
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/DataStructures/Bag.swift:193:46: error: 'removeValueForKey' has been renamed to 'removeValue(forKey:)'
    - NOTE  | [OSX] xcodebuild:  Swift.Dictionary<Key, Value>:7:26: note: 'removeValueForKey' has been explicitly marked unavailable here
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/DataStructures/Bag.swift:200:24: error: 'removeAtIndex' has been renamed to 'remove(at:)'
    - NOTE  | [OSX] xcodebuild:  Swift.ContiguousArray<Element>:3:26: note: 'removeAtIndex' has been explicitly marked unavailable here
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/DataStructures/Bag.swift:200:24: warning: result of call to 'removeAtIndex' is unused
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/DataStructures/Bag.swift:228:12: error: '_onlyFastPath' is inaccessible due to 'private' protection level
    - NOTE  | xcodebuild:  RxSwift/RxSwift/DataStructures/Bag.swift:91:17: note: '_onlyFastPath' declared here
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/DataStructures/Bag.swift:229:29: error: '_value0' is inaccessible due to 'private' protection level
    - NOTE  | xcodebuild:  RxSwift/RxSwift/DataStructures/Bag.swift:80:17: note: '_value0' declared here
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/DataStructures/Bag.swift:235:21: error: '_pairs' is inaccessible due to 'private' protection level
    - NOTE  | xcodebuild:  RxSwift/RxSwift/DataStructures/Bag.swift:86:17: note: '_pairs' declared here
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/DataStructures/Bag.swift:236:22: error: '_value0' is inaccessible due to 'private' protection level
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/DataStructures/Bag.swift:237:22: error: '_value1' is inaccessible due to 'private' protection level
    - NOTE  | xcodebuild:  RxSwift/RxSwift/DataStructures/Bag.swift:83:17: note: '_value1' declared here
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/DataStructures/Bag.swift:238:26: error: '_dictionary' is inaccessible due to 'private' protection level
    - NOTE  | xcodebuild:  RxSwift/RxSwift/DataStructures/Bag.swift:89:17: note: '_dictionary' declared here
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/DataStructures/Bag.swift:267:12: error: '_onlyFastPath' is inaccessible due to 'private' protection level
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/DataStructures/Bag.swift:268:13: error: '_value0' is inaccessible due to 'private' protection level
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/DataStructures/Bag.swift:272:21: error: '_pairs' is inaccessible due to 'private' protection level
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/DataStructures/Bag.swift:273:22: error: '_value0' is inaccessible due to 'private' protection level
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/DataStructures/Bag.swift:274:22: error: '_value1' is inaccessible due to 'private' protection level
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/DataStructures/Bag.swift:275:26: error: '_dictionary' is inaccessible due to 'private' protection level
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/DataStructures/Bag.swift:301:12: error: '_onlyFastPath' is inaccessible due to 'private' protection level
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/DataStructures/Bag.swift:302:13: error: '_value0' is inaccessible due to 'private' protection level
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/DataStructures/Bag.swift:306:21: error: '_pairs' is inaccessible due to 'private' protection level
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/DataStructures/Bag.swift:307:22: error: '_value0' is inaccessible due to 'private' protection level
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/DataStructures/Bag.swift:308:22: error: '_value1' is inaccessible due to 'private' protection level
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/DataStructures/Bag.swift:309:26: error: '_dictionary' is inaccessible due to 'private' protection level
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Subjects/BehaviorSubject.swift:65:31: error: thrown expression type 'RxError' does not conform to 'Error'
    - ERROR | xcodebuild:  RxSwift/RxSwift/Event.swift:60:23: error: 'ErrorType' has been renamed to 'Error'
    - NOTE  | xcodebuild:  public var error: ErrorType? {
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Subjects/BehaviorSubject.swift:84:26: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Subjects/BehaviorSubject.swift:96:15: error: enum case 'Error' not found in type 'Event<Element>'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Subjects/BehaviorSubject.swift:111:40: error: missing argument label 'observer:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Subjects/BehaviorSubject.swift:116:25: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Subjects/BehaviorSubject.swift:121:25: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Subjects/BehaviorSubject.swift:125:37: error: missing argument label 'element:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Subjects/BehaviorSubject.swift:126:21: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Subjects/BehaviorSubject.swift:133:35: error: missing argument label 'disposeKey:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Subjects/BehaviorSubject.swift:141:34: error: missing argument label 'key:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observable+Extensions.swift:38:43: error: single argument function types require parentheses
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observable+Extensions.swift:38:72: error: 'ErrorType' has been renamed to 'Error'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/SchedulerType.swift:14:35: error: 'NSTimeInterval' has been renamed to 'TimeInterval'
    - NOTE  | xcodebuild:  <unknown>:0: note: 'NSTimeInterval' was obsoleted in Swift 3
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Buffer.swift:55:21: error: missing argument label 'windowID:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Buffer.swift:56:49: error: missing argument label 'disposable1' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Buffer.swift:65:19: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Buffer.swift:67:21: error: missing argument label 'windowID:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Buffer.swift:71:24: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Buffer.swift:79:41: error: '_count' is inaccessible due to 'private' protection level
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Buffer.swift:14:17: note: '_count' declared here
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Buffer.swift:83:15: error: enum case 'Error' not found in type 'Event<Element>'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Buffer.swift:88:23: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Buffer.swift:89:23: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Buffer.swift:107:40: error: '_scheduler' is inaccessible due to 'private' protection level
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Buffer.swift:15:17: note: '_scheduler' declared here
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Catch.swift:79:26: error: 'ErrorType' has been renamed to 'Error'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Catch.swift:98:28: error: 'SequenceType' has been renamed to 'Sequence'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Catch.swift:98:66: error: 'Generator' is not a member type of 'S'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Catch.swift:98:115: error: 'Generator' is not a member type of 'S'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observers/TailRecursiveSink.swift:21:28: error: 'SequenceType' has been renamed to 'Sequence'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observers/TailRecursiveSink.swift:21:66: error: 'Generator' is not a member type of 'S'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observers/TailRecursiveSink.swift:21:114: error: 'Generator' is not a member type of 'S'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Catch.swift:148:24: error: 'SequenceType' has been renamed to 'Sequence'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Catch.swift:148:45: error: 'Generator' is not a member type of 'S'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Catch.swift:148:105: error: 'Generator' is not a member type of 'S'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Catch.swift:104:29: error: 'ErrorType' has been renamed to 'Error'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observers/TailRecursiveSink.swift:26:49: error: 'Generator' is not a member type of 'S'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Catch.swift:149:27: error: 'Generator' is not a member type of 'S'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Catch.swift:157:19: error: method does not override any method from its superclass
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Catch.swift:24:27: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Catch.swift:29:15: error: enum case 'Error' not found in type 'Event<O.E>'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Catch.swift:50:33: error: '_source' is inaccessible due to 'private' protection level
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Catch.swift:81:17: note: '_source' declared here
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Catch.swift:58:23: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Catch.swift:60:23: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Catch.swift:62:15: error: enum case 'Error' not found in type 'Event<O.E>'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Catch.swift:71:27: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Catch.swift:116:22: error: missing argument label 'command:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Catch.swift:132:23: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/CombineLatest+arity.swift:83:27: error: assigning non-escaping parameter 'resultSelector' to an @escaping closure
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/CombineLatest+arity.swift:79:60: note: parameter 'resultSelector' is implicitly non-escaping
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/CombineLatest+arity.swift:171:27: error: assigning non-escaping parameter 'resultSelector' to an @escaping closure
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/CombineLatest+arity.swift:166:85: note: parameter 'resultSelector' is implicitly non-escaping
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/CombineLatest+arity.swift:266:27: error: assigning non-escaping parameter 'resultSelector' to an @escaping closure
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/CombineLatest+arity.swift:260:110: note: parameter 'resultSelector' is implicitly non-escaping
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/CombineLatest+arity.swift:368:27: error: assigning non-escaping parameter 'resultSelector' to an @escaping closure
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/CombineLatest+arity.swift:361:135: note: parameter 'resultSelector' is implicitly non-escaping
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/CombineLatest+arity.swift:477:27: error: assigning non-escaping parameter 'resultSelector' to an @escaping closure
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/CombineLatest+arity.swift:469:160: note: parameter 'resultSelector' is implicitly non-escaping
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/CombineLatest+arity.swift:593:27: error: assigning non-escaping parameter 'resultSelector' to an @escaping closure
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/CombineLatest+arity.swift:584:185: note: parameter 'resultSelector' is implicitly non-escaping
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/CombineLatest+arity.swift:716:27: error: assigning non-escaping parameter 'resultSelector' to an @escaping closure
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/CombineLatest+arity.swift:706:210: note: parameter 'resultSelector' is implicitly non-escaping
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/CombineLatest.swift:13:22: error: 'ErrorType' has been renamed to 'Error'
    - NOTE  | xcodebuild:  func fail(error: ErrorType)
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/CombineLatest+CollectionType.swift:11:42: error: 'CollectionType' has been renamed to 'Collection'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/CombineLatest+CollectionType.swift:11:85: error: 'Generator' is not a member type of 'C'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/CombineLatest+CollectionType.swift:107:38: error: 'CollectionType' has been renamed to 'Collection'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/CombineLatest+CollectionType.swift:107:64: error: 'Generator' is not a member type of 'C'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/CombineLatest+CollectionType.swift:14:33: error: 'Generator' is not a member type of 'C'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/CombineLatest+CollectionType.swift:108:35: error: 'Generator' is not a member type of 'C'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/CombineLatest+CollectionType.swift:30:48: error: argument 'repeatedValue' must precede argument 'count'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/CombineLatest+CollectionType.swift:54:35: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/CombineLatest+CollectionType.swift:65:31: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/CombineLatest+CollectionType.swift:81:31: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/CombineLatest+CollectionType.swift:93:26: error: value of type 'C' has no member 'startIndex'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/CombineLatest.swift:75:22: error: 'ErrorType' has been renamed to 'Error'
    - NOTE  | xcodebuild:  func fail(error: ErrorType) {
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/CombineLatest.swift:32:42: error: argument 'repeatedValue' must precede argument 'count'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/CombineLatest.swift:33:40: error: argument 'repeatedValue' must precede argument 'count'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Rx.swift:17:1: error: '@noreturn' has been removed; functions that never return should have a return type of 'Never' instead
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/CombineLatest.swift:51:27: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/CombineLatest.swift:54:27: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/CombineLatest.swift:69:27: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/CombineLatest.swift:89:23: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/CombineLatest.swift:114:27: error: assigning non-escaping parameter 'setLatestValue' to an @escaping closure
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/CombineLatest.swift:109:76: note: parameter 'setLatestValue' is implicitly non-escaping
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/CombineLatest.swift:118:24: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/CombineLatest.swift:125:26: error: missing argument label 'index:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/CombineLatest.swift:126:15: error: enum case 'Error' not found in type 'Event<ElementType>'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/CombineLatest.swift:131:26: error: missing argument label 'index:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Disposables/CompositeDisposable.swift:35:30: error: missing argument label 'element:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Disposables/CompositeDisposable.swift:36:30: error: missing argument label 'element:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Disposables/CompositeDisposable.swift:44:30: error: missing argument label 'element:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Disposables/CompositeDisposable.swift:45:30: error: missing argument label 'element:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Disposables/CompositeDisposable.swift:46:30: error: missing argument label 'element:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Disposables/CompositeDisposable.swift:54:30: error: missing argument label 'element:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Disposables/CompositeDisposable.swift:55:30: error: missing argument label 'element:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Disposables/CompositeDisposable.swift:56:30: error: missing argument label 'element:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Disposables/CompositeDisposable.swift:57:30: error: missing argument label 'element:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Disposables/CompositeDisposable.swift:60:34: error: missing argument label 'element:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Disposables/CompositeDisposable.swift:69:34: error: missing argument label 'element:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Disposables/CompositeDisposable.swift:81:34: error: missing argument label 'disposable:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Disposables/CompositeDisposable.swift:93:37: error: missing argument label 'element:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Disposables/CompositeDisposable.swift:110:27: error: missing argument label 'disposeKey:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Disposables/CompositeDisposable.swift:115:40: error: missing argument label 'key:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Disposables/CompositeDisposable.swift:123:26: error: missing argument label 'bag:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Concat.swift:12:21: error: 'SequenceType' has been renamed to 'Sequence'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Concat.swift:12:59: error: 'Generator' is not a member type of 'S'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Concat.swift:12:108: error: 'Generator' is not a member type of 'S'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Concat.swift:47:17: error: 'SequenceType' has been renamed to 'Sequence'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Concat.swift:47:38: error: 'Generator' is not a member type of 'S'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Concat.swift:47:98: error: 'Generator' is not a member type of 'S'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Concat.swift:48:27: error: 'Generator' is not a member type of 'S'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Concat.swift:58:19: error: method does not override any method from its superclass
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Concat.swift:29:22: error: missing argument label 'command:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/ConcurrentDispatchQueueScheduler.swift:17:37: error: 'NSTimeInterval' has been renamed to 'TimeInterval'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/ConcurrentDispatchQueueScheduler.swift:20:26: error: 'dispatch_queue_t' is unavailable in Swift
    - NOTE  | xcodebuild:  Dispatch.dispatch_queue_t:2:18: note: 'dispatch_queue_t' has been explicitly marked unavailable here
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/ConcurrentDispatchQueueScheduler.swift:34:24: error: 'dispatch_queue_t' is unavailable in Swift
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/ConcurrentDispatchQueueScheduler.swift:50:68: error: 'NSTimeInterval' has been renamed to 'TimeInterval'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/ConcurrentDispatchQueueScheduler.swift:54:64: error: 'NSTimeInterval' has been renamed to 'TimeInterval'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/ConcurrentDispatchQueueScheduler.swift:65:69: error: single argument function types require parentheses
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/ConcurrentDispatchQueueScheduler.swift:69:64: error: single argument function types require parentheses
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/ConcurrentDispatchQueueScheduler.swift:91:78: error: 'NSTimeInterval' has been renamed to 'TimeInterval'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/ConcurrentDispatchQueueScheduler.swift:66:37: error: missing argument label 'state:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Debug.swift:13:47: error: 'NSDateFormatter' has been renamed to 'DateFormatter'
    - NOTE  | xcodebuild:  <unknown>:0: note: 'NSDateFormatter' was obsoleted in Swift 3
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/DataStructures/InfiniteSequence.swift:14:30: error: 'SequenceType' has been renamed to 'Sequence'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Range.swift:37:44: error: 'SignedIntegerType' has been renamed to 'SignedInteger'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Range.swift:11:24: error: 'SignedIntegerType' has been renamed to 'SignedInteger'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/RetryWhen.swift:134:28: error: 'SequenceType' has been renamed to 'Sequence'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/RetryWhen.swift:134:91: error: 'Generator' is not a member type of 'S'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/RetryWhen.swift:134:140: error: 'Generator' is not a member type of 'S'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/RetryWhen.swift:82:32: error: 'SequenceType' has been renamed to 'Sequence'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/RetryWhen.swift:82:112: error: 'Generator' is not a member type of 'S'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/RetryWhen.swift:82:150: error: 'Generator' is not a member type of 'S'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/RetryWhen.swift:11:27: error: 'SequenceType' has been renamed to 'Sequence'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/RetryWhen.swift:11:107: error: 'Generator' is not a member type of 'S'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/RetryWhen.swift:11:145: error: 'Generator' is not a member type of 'S'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/RetryWhen.swift:38:36: error: 'SequenceType' has been renamed to 'Sequence'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/RetryWhen.swift:38:116: error: 'Generator' is not a member type of 'S'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/RetryWhen.swift:38:154: error: 'Generator' is not a member type of 'S'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Rx.swift:21:1: error: '@noreturn' has been removed; functions that never return should have a return type of 'Never' instead
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Timer.swift:29:51: error: 'SignedIntegerType' has been renamed to 'SignedInteger'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Timer.swift:49:16: error: 'SignedIntegerType' has been renamed to 'SignedInteger'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Timer.swift:11:45: error: 'SignedIntegerType' has been renamed to 'SignedInteger'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Zip+CollectionType.swift:119:28: error: 'CollectionType' has been renamed to 'Collection'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Zip+CollectionType.swift:119:54: error: 'Generator' is not a member type of 'C'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Zip+CollectionType.swift:11:32: error: 'CollectionType' has been renamed to 'Collection'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Zip+CollectionType.swift:11:75: error: 'Generator' is not a member type of 'C'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/ConcurrentDispatchQueueScheduler.swift:92:44: error: use of unresolved identifier 'DISPATCH_SOURCE_TYPE_TIMER'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/SerialDispatchQueueScheduler.swift:90:64: error: 'NSTimeInterval' has been renamed to 'TimeInterval'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/ConcurrentDispatchQueueScheduler.swift:124:44: error: use of unresolved identifier 'DISPATCH_SOURCE_TYPE_TIMER'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/SerialDispatchQueueScheduler.swift:86:68: error: 'NSTimeInterval' has been renamed to 'TimeInterval'
    - NOTE  | [OSX] xcodebuild:  <unknown>:0: warning: 'cacheParamsComputed' is deprecated
    - NOTE  | [OSX] xcodebuild:  <unknown>:0: warning: 'cacheAlphaComputed' is deprecated
    - NOTE  | [OSX] xcodebuild:  <unknown>:0: warning: 'keepCacheWindow' is deprecated
    - NOTE  | [OSX] xcodebuild:  <unknown>:0: error: 'memoryless' is unavailable
    - NOTE  | [OSX] xcodebuild:  Metal.MTLCommandBufferError:55:14: note: 'memoryless' has been explicitly marked unavailable here
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/ConcurrentDispatchQueueScheduler.swift:141:26: error: closure use of non-escaping parameter 'action' may allow it to escape
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/ConcurrentDispatchQueueScheduler.swift:123:111: note: parameter 'action' is implicitly non-escaping
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/ConcurrentDispatchQueueScheduler.swift:103:46: error: closure use of non-escaping parameter 'action' may allow it to escape
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/ConcurrentDispatchQueueScheduler.swift:91:94: note: parameter 'action' is implicitly non-escaping
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/ConcurrentDispatchQueueScheduler.swift:77:33: error: closure use of non-escaping parameter 'action' may allow it to escape
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/ConcurrentDispatchQueueScheduler.swift:69:56: note: parameter 'action' is implicitly non-escaping
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/ConcurrentMainScheduler.swift:18:37: error: 'NSTimeInterval' has been renamed to 'TimeInterval'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/ConcurrentMainScheduler.swift:22:29: error: 'dispatch_queue_t' is unavailable in Swift
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/SerialDispatchQueueScheduler.swift:44:23: error: 'dispatch_queue_t' is unavailable in Swift
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/SerialDispatchQueueScheduler.swift:56:90: error: 'dispatch_queue_t' is unavailable in Swift
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/SerialDispatchQueueScheduler.swift:68:36: error: 'dispatch_queue_t' is unavailable in Swift
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/ConcurrentMainScheduler.swift:74:78: error: 'NSTimeInterval' has been renamed to 'TimeInterval'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/ConcurrentMainScheduler.swift:49:12: error: 'NSThread' has been renamed to 'Thread'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/ConcurrentMainScheduler.swift:60:33: error: closure use of non-escaping parameter 'action' may allow it to escape
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/ConcurrentMainScheduler.swift:48:55: note: parameter 'action' is implicitly non-escaping
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/ConnectableObservable.swift:52:23: error: '_connection' is inaccessible due to 'private' protection level
    - NOTE  | xcodebuild:  RxSwift/RxSwift/Observables/Implementations/ConnectableObservable.swift:72:17: note: '_connection' declared here
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/ConnectableObservable.swift:53:24: error: '_connection' is inaccessible due to 'private' protection level
    - ERROR | xcodebuild:  RxSwift/RxSwift/Concurrency/Lock.swift:71:29: error: @noescape is now an attribute on a parameter type, instead of on the parameter itself
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/CurrentThreadScheduler.swift:25:21: error: method does not override any method from its superclass
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/CurrentThreadScheduler.swift:31:21: error: method does not override any method from its superclass
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/CurrentThreadScheduler.swift:31:21: note: type does not match superclass instance method with type '() -> Any'
    - NOTE  | xcodebuild:  ObjectiveC.NSObject:18:15: note: potential overridden instance method 'copy()' here
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/CurrentThreadScheduler.swift:41:21: error: method does not override any method from its superclass
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/CurrentThreadScheduler.swift:47:21: error: method does not override any method from its superclass
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/CurrentThreadScheduler.swift:47:21: note: type does not match superclass instance method with type '() -> Any'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/CurrentThreadScheduler.swift:24:9: error: type 'CurrentThreadSchedulerKey' does not conform to protocol 'NSCopying'
    - NOTE  | xcodebuild:  Foundation.NSCopying:3:17: note: protocol requires function 'copy(with:)' with type '(NSZone?) -> Any'; do you want to add a stub?
    - NOTE  | xcodebuild:  ObjectiveC.NSObject:22:21: note: candidate operates on a type, not an instance as required
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/CurrentThreadScheduler.swift:40:9: error: type 'CurrentThreadSchedulerQueueKey' does not conform to protocol 'NSCopying'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/CurrentThreadScheduler.swift:74:20: error: 'NSThread' has been renamed to 'Thread'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/CurrentThreadScheduler.swift:77:13: error: 'NSThread' has been renamed to 'Thread'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/CurrentThreadScheduler.swift:86:55: error: 'NSThread' has been renamed to 'Thread'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/CurrentThreadScheduler.swift:90:13: error: 'NSThread' has been renamed to 'Thread'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/Internal/ScheduledItem.swift:14:24: error: single argument function types require parentheses
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/CurrentThreadScheduler.swift:141:29: error: missing argument label 'element:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Debug.swift:22:39: error: 'NSDateFormatter' has been renamed to 'DateFormatter'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Debug.swift:41:19: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Debug.swift:61:49: error: missing argument label 'character:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Deferred.swift:17:30: error: assigning non-escaping parameter 'observableFactory' to an @escaping closure
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Deferred.swift:16:10: note: parameter 'observableFactory' is implicitly non-escaping
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Deferred.swift:27:23: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Deferred.swift:34:19: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Deferred.swift:39:15: error: enum case 'Error' not found in type 'Event<S.E>'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Deferred.swift:53:30: error: assigning non-escaping parameter 'observableFactory' to an @escaping closure
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Deferred.swift:52:10: note: parameter 'observableFactory' is implicitly non-escaping
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/DelaySubscription.swift:25:19: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Disposables/DisposeBag.swift:18:27: error: missing argument label 'disposable:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Disposables/DisposeBag.swift:55:24: error: missing argument label 'disposable:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Disposables/DisposeBag.swift:85:31: error: incorrect argument label in call (have 'keepCapacity:', expected 'keepingCapacity:')
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/DistinctUntilChanged.swift:26:39: error: '_selector' is inaccessible due to 'private' protection level
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/DistinctUntilChanged.swift:56:17: note: '_selector' declared here
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/DistinctUntilChanged.swift:38:27: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/DistinctUntilChanged.swift:41:27: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/DistinctUntilChanged.swift:44:15: error: enum case 'Error' not found in type 'Event<O.E>'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/DistinctUntilChanged.swift:45:23: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/DistinctUntilChanged.swift:61:21: error: assigning non-escaping parameter 'selector' to an @escaping closure
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/DistinctUntilChanged.swift:59:39: note: parameter 'selector' is implicitly non-escaping
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/DistinctUntilChanged.swift:62:21: error: assigning non-escaping parameter 'comparer' to an @escaping closure
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/DistinctUntilChanged.swift:59:62: note: parameter 'comparer' is implicitly non-escaping
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Do.swift:38:30: error: single argument function types require parentheses
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Do.swift:24:25: error: '_eventHandler' is inaccessible due to 'private' protection level
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Do.swift:41:17: note: '_eventHandler' declared here
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Do.swift:25:23: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Do.swift:31:23: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Do.swift:45:25: error: assigning non-escaping parameter 'eventHandler' to an @escaping closure
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Do.swift:43:39: note: parameter 'eventHandler' is implicitly non-escaping
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/ElementAt.swift:30:27: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/ElementAt.swift:31:27: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/ElementAt.swift:36:38: error: missing argument label 'i:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/ElementAt.swift:38:27: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/ElementAt.swift:43:15: error: enum case 'Error' not found in type 'Event<SourceType>'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/ElementAt.swift:48:27: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/ElementAt.swift:50:27: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/ElementAt.swift:66:26: error: missing argument label 'lastMessage:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/ElementAt.swift:76:49: error: missing argument label 'observer:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Empty.swift:13:21: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Error.swift:12:25: error: 'ErrorType' has been renamed to 'Error'
    - NOTE  | [OSX] xcodebuild:  private let _error: ErrorType
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Error.swift:14:17: error: 'ErrorType' has been renamed to 'Error'
    - NOTE  | [OSX] xcodebuild:  init(error: ErrorType) {
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Error.swift:19:21: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Errors.swift:17:13: error: type 'RxError' does not conform to protocol 'RawRepresentable'
    - NOTE  | [OSX] xcodebuild:  Swift.RawRepresentable:96:20: note: protocol requires nested type 'RawValue'; do you want to add it?
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Event.swift:34:15: error: enum case 'Error' not found in type 'Event<Element>'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Event.swift:47:15: error: enum case 'Error' not found in type 'Event<Element>'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Event.swift:61:18: error: enum case 'Error' not found in type 'Event<Element>'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Filter.swift:20:22: error: assigning non-escaping parameter 'predicate' to an @escaping closure
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Filter.swift:19:10: note: parameter 'predicate' is implicitly non-escaping
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Filter.swift:30:35: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Filter.swift:34:31: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Filter.swift:37:31: error: enum case 'Error' not found in type 'Event<O.E>'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Filter.swift:38:27: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Filter.swift:52:22: error: assigning non-escaping parameter 'predicate' to an @escaping closure
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Filter.swift:50:39: note: parameter 'predicate' is implicitly non-escaping
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Generate.swift:52:29: error: single argument function types require parentheses
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Generate.swift:53:27: error: single argument function types require parentheses
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Generate.swift:54:34: error: single argument function types require parentheses
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Generate.swift:57:38: error: single argument function types require parentheses
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Generate.swift:57:65: error: single argument function types require parentheses
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Generate.swift:57:96: error: single argument function types require parentheses
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Generate.swift:20:25: error: '_initialState' is inaccessible due to 'private' protection level
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Generate.swift:51:17: note: '_initialState' declared here
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Generate.swift:25:24: error: '_scheduler' is inaccessible due to 'private' protection level
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Generate.swift:55:17: note: '_scheduler' declared here
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Generate.swift:59:22: error: assigning non-escaping parameter 'condition' to an @escaping closure
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Generate.swift:57:27: note: parameter 'condition' is implicitly non-escaping
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Generate.swift:60:20: error: assigning non-escaping parameter 'iterate' to an @escaping closure
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Generate.swift:57:56: note: parameter 'iterate' is implicitly non-escaping
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Generate.swift:61:27: error: assigning non-escaping parameter 'resultSelector' to an @escaping closure
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Generate.swift:57:80: note: parameter 'resultSelector' is implicitly non-escaping
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/HistoricalSchedulerTimeConverter.swift:74:28: error: 'HistoricalSchedulerTimeConverter.VirtualTimeUnit' (aka 'NSDate') is not implicitly convertible to 'Date'; did you mean to use 'as' to explicitly convert?
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/HistoricalSchedulerTimeConverter.swift:75:15: error: 'OrderedAscending' has been renamed to 'orderedAscending'
    - NOTE  | [OSX] xcodebuild:  <unknown>:0: note: 'OrderedAscending' was obsoleted in Swift 3
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/HistoricalSchedulerTimeConverter.swift:77:15: error: 'OrderedSame' has been renamed to 'orderedSame'
    - NOTE  | [OSX] xcodebuild:  <unknown>:0: note: 'OrderedSame' was obsoleted in Swift 3
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/HistoricalSchedulerTimeConverter.swift:79:15: error: 'OrderedDescending' has been renamed to 'orderedDescending'
    - NOTE  | [OSX] xcodebuild:  <unknown>:0: note: 'OrderedDescending' was obsoleted in Swift 3
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/ImmediateScheduler.swift:30:27: error: missing argument label 'action:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/ImmediateScheduler.swift:34:37: error: closure use of non-escaping parameter 'action' may allow it to escape
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/ImmediateScheduler.swift:28:48: note: parameter 'action' is implicitly non-escaping
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/RecursiveScheduler.swift:129:49: error: single argument function types require parentheses
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/ImmediateSchedulerType.swift:36:37: error: missing argument label 'state:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/DataStructures/InfiniteSequence.swift:16:27: error: 'AnyGenerator' has been renamed to 'AnyIterator'
    - NOTE  | xcodebuild:  Swift.AnyGenerator:2:15: note: 'AnyGenerator' has been explicitly marked unavailable here
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/Internal/InvocableScheduledItem.swift:22:27: error: missing argument label 'value:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Just.swift:22:33: error: '_scheduler' is inaccessible due to 'private' protection level
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Just.swift:34:17: note: '_scheduler' declared here
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Just.swift:57:21: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Just.swift:58:21: error: missing argument label 'event:' in call
    - ERROR | xcodebuild:  RxSwift/RxSwift/Concurrency/Lock.swift:76:35: error: @noescape is now an attribute on a parameter type, instead of on the parameter itself
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/MainScheduler.swift:23:29: error: 'dispatch_queue_t' is unavailable in Swift
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/MainScheduler.swift:41:67: error: incorrect argument label in call (have 'serialQueue:', expected 'globalConcurrentQueueQOS:')
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/MainScheduler.swift:52:73: error: single argument function types require parentheses
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/MainScheduler.swift:47:13: error: 'NSThread' has been renamed to 'Thread'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/MainScheduler.swift:48:26: error: missing argument label 'lastMessage:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/MainScheduler.swift:55:12: error: 'NSThread' has been renamed to 'Thread'
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/MainScheduler.swift:57:13: warning: result of call is unused, but produces 'Int32'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/MainScheduler.swift:65:17: error: closure use of non-escaping parameter 'action' may allow it to escape
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/MainScheduler.swift:52:65: note: parameter 'action' is implicitly non-escaping
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Map.swift:121:43: error: single argument function types require parentheses
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observable.swift:48:43: error: single argument function types require parentheses
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Map.swift:20:21: error: assigning non-escaping parameter 'selector' to an @escaping closure
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Map.swift:19:10: note: parameter 'selector' is implicitly non-escaping
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Map.swift:29:27: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Map.swift:32:27: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Map.swift:35:15: error: enum case 'Error' not found in type 'Event<SourceType>'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Map.swift:39:23: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Map.swift:57:21: error: assigning non-escaping parameter 'selector' to an @escaping closure
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Map.swift:56:10: note: parameter 'selector' is implicitly non-escaping
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Map.swift:65:81: error: missing argument label 'i:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Map.swift:69:27: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Map.swift:72:15: error: enum case 'Error' not found in type 'Event<SourceType>'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Map.swift:76:23: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Map.swift:91:21: error: assigning non-escaping parameter 'selector' to an @escaping closure
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Map.swift:89:42: note: parameter 'selector' is implicitly non-escaping
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Map.swift:114:21: error: assigning non-escaping parameter 'selector' to an @escaping closure
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Map.swift:112:42: note: parameter 'selector' is implicitly non-escaping
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Merge.swift:214:18: error: property does not override any property from its superclass
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Merge.swift:215:16: error: '_group' is inaccessible due to 'private' protection level
    - NOTE  | xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Merge.swift:286:17: note: '_group' declared here
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Merge.swift:34:24: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Merge.swift:40:31: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Merge.swift:41:15: error: enum case 'Error' not found in type 'Event<S.E>'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Merge.swift:42:31: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Merge.swift:45:21: error: '_group' is inaccessible due to 'private' protection level
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Merge.swift:79:17: note: '_group' declared here
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Merge.swift:46:35: error: '_queue' is inaccessible due to 'private' protection level
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Merge.swift:76:17: note: '_queue' declared here
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Merge.swift:50:25: error: '_activeCount' is inaccessible due to 'private' protection level
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Merge.swift:75:17: note: '_activeCount' declared here
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Merge.swift:52:28: error: '_stopped' is inaccessible due to 'private' protection level
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Merge.swift:74:17: note: '_stopped' declared here
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Merge.swift:53:39: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Merge.swift:84:30: error: missing argument label 'disposable:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Merge.swift:89:30: error: missing argument label 'disposable:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Merge.swift:99:39: error: missing argument label 'disposable:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Merge.swift:110:24: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Merge.swift:122:32: error: missing argument label 'element:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Merge.swift:127:31: error: missing argument label 'innerSource:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Merge.swift:129:15: error: enum case 'Error' not found in type 'Event<S>'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Merge.swift:134:27: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Merge.swift:157:36: error: missing argument label 'source:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Merge.swift:182:21: error: assigning non-escaping parameter 'selector' to an @escaping closure
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Merge.swift:181:10: note: parameter 'selector' is implicitly non-escaping
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Merge.swift:198:21: error: assigning non-escaping parameter 'selector' to an @escaping closure
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Merge.swift:197:10: note: parameter 'selector' is implicitly non-escaping
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Merge.swift:203:60: error: missing argument label 'i:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Merge.swift:219:21: error: assigning non-escaping parameter 'selector' to an @escaping closure
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Merge.swift:218:10: note: parameter 'selector' is implicitly non-escaping
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Merge.swift:247:21: error: '_lock' is inaccessible due to 'private' protection level
    - NOTE  | xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Merge.swift:279:17: note: '_lock' declared here
    - NOTE  | xcodebuild:  RxSwift/RxSwift/Disposables/SingleAssignmentDisposable.swift:17:17: note: '_lock' declared here
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Merge.swift:248:35: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Merge.swift:250:15: error: enum case 'Error' not found in type 'Event<S.E>'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Merge.swift:251:21: error: '_lock' is inaccessible due to 'private' protection level
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Merge.swift:256:21: error: '_group' is inaccessible due to 'private' protection level
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Merge.swift:262:24: error: '_stopped' is inaccessible due to 'private' protection level
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Merge.swift:289:17: note: '_stopped' declared here
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Merge.swift:263:25: error: '_lock' is inaccessible due to 'private' protection level
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Merge.swift:264:39: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Merge.swift:306:44: error: missing argument label 'element:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Merge.swift:310:27: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Merge.swift:313:15: error: enum case 'Error' not found in type 'Event<SourceType>'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Merge.swift:322:31: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Merge.swift:334:50: error: missing argument label 'disposable:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Merge.swift:342:30: error: missing argument label 'disposable:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Merge.swift:362:21: error: assigning non-escaping parameter 'selector' to an @escaping closure
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Merge.swift:360:42: note: parameter 'selector' is implicitly non-escaping
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Merge.swift:367:36: error: missing argument label 'source:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Merge.swift:381:21: error: assigning non-escaping parameter 'selector' to an @escaping closure
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Merge.swift:379:42: note: parameter 'selector' is implicitly non-escaping
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Merge.swift:386:36: error: missing argument label 'source:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Merge.swift:401:21: error: assigning non-escaping parameter 'selector' to an @escaping closure
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Merge.swift:399:42: note: parameter 'selector' is implicitly non-escaping
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Merge.swift:406:36: error: missing argument label 'source:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Merge.swift:420:36: error: missing argument label 'source:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Merge.swift:247:51: error: '_lock' is inaccessible due to 'private' protection level
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Merge.swift:251:51: error: '_lock' is inaccessible due to 'private' protection level
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Merge.swift:263:55: error: '_lock' is inaccessible due to 'private' protection level
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Multicast.swift:25:39: error: '_subjectSelector' is inaccessible due to 'private' protection level
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Multicast.swift:57:17: note: '_subjectSelector' declared here
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Multicast.swift:36:23: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Multicast.swift:43:19: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Multicast.swift:46:19: error: enum case 'Error' not found in type 'Event<O.E>'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Multicast.swift:62:28: error: assigning non-escaping parameter 'subjectSelector' to an @escaping closure
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Multicast.swift:60:55: note: parameter 'subjectSelector' is implicitly non-escaping
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Multicast.swift:63:21: error: assigning non-escaping parameter 'selector' to an @escaping closure
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Multicast.swift:60:93: note: parameter 'selector' is implicitly non-escaping
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Binding.swift:72:31: error: missing argument label 'subject:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Binding.swift:93:31: error: missing argument label 'subject:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Binding.swift:108:31: error: missing argument label 'subject:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Binding.swift:169:32: error: missing argument label 'bufferSize:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Creation.swift:94:37: error: 'ErrorType' has been renamed to 'Error'
    - NOTE  | [OSX] xcodebuild:  public static func error(error: ErrorType) -> Observable<E> {
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Creation.swift:143:74: error: single argument function types require parentheses
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Creation.swift:143:170: error: single argument function types require parentheses
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Creation.swift:171:97: error: single argument function types require parentheses
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Creation.swift:202:86: error: use of undeclared type 'Generator'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Using.swift:62:35: error: single argument function types require parentheses
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observable+Extensions.swift:92:42: error: 'ErrorType' has been renamed to 'Error'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observable+Extensions.swift:22:15: error: extraneous argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observable+Extensions.swift:54:19: error: enum case 'Error' not found in type 'Event<Self.E>'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observable+Extensions.swift:82:35: error: missing argument label 'observer:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observable+Extensions.swift:95:22: error: enum case 'Error' not found in type 'Event<Self.E>'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observable+Extensions.swift:116:35: error: missing argument label 'observer:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observable+Extensions.swift:22:13: error: closure use of non-escaping parameter 'on' may allow it to escape
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observable+Extensions.swift:19:27: note: parameter 'on' is implicitly non-escaping
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Multiple.swift:24:51: error: use of undeclared type 'Generator'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Multiple.swift:42:41: error: use of undeclared type 'Generator'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Multiple.swift:103:23: error: use of undeclared type 'Generator'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Multiple.swift:126:23: error: use of undeclared type 'Generator'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Multiple.swift:190:38: error: 'ErrorType' has been renamed to 'Error'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Multiple.swift:221:23: error: use of undeclared type 'Generator'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Multiple.swift:295:23: error: use of undeclared type 'Generator'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Multiple.swift:82:16: error: value of type '[Observable<Self.E>]' has no member 'concat'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Multiple.swift:206:78: error: missing argument label 'element:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Single.swift:217:69: error: 'ErrorType' has been renamed to 'Error'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Single.swift:217:101: error: single argument function types require parentheses
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Single.swift:232:94: error: 'ErrorType' has been renamed to 'Error'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Single.swift:25:42: error: argument passed to call that takes no arguments
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Single.swift:41:42: error: extra argument in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Single.swift:55:42: error: extra argument in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Single.swift:108:28: error: cannot call value of non-function type '()'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Single.swift:109:19: error: enum case 'Error' not found in type 'Event<Self.E>'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Single.swift:150:39: error: passing non-escaping parameter 'onCompleted' to function expecting an @escaping closure
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Single.swift:148:31: note: parameter 'onCompleted' is implicitly non-escaping
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Single.swift:188:16: error: cannot convert return expression of type 'CatchSequence<InfiniteSequence<Observable<Self.E>>>' to return type 'Observable<Self.E>'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Single.swift:204:39: error: 'Repeat' has been renamed to 'Repeated'
    - NOTE  | [OSX] xcodebuild:  Swift.Repeat:2:15: note: 'Repeat' has been explicitly marked unavailable here
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/RetryWhen.swift:140:43: error: single argument function types require parentheses
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+Single.swift:219:122: error: cannot convert value of type '(Observable<Error>) -> TriggerObservable' to expected argument type '(Observable<_>) -> _'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+StandardSequenceOperators.swift:176:34: error: single argument function types require parentheses
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+StandardSequenceOperators.swift:178:47: error: missing argument label 'selector:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Switch.swift:178:26: error: single argument function types require parentheses
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+StandardSequenceOperators.swift:320:63: error: passing non-escaping parameter 'predicate' to function expecting an @escaping closure
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Observable+StandardSequenceOperators.swift:318:24: note: parameter 'predicate' is implicitly non-escaping
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/ObservableType.swift:55:34: error: missing argument label 'subscribe:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/ObserveOn.swift:82:36: error: single argument function types require parentheses
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/ObserveOn.swift:66:33: error: missing argument label 'element:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/ObserveOn.swift:78:79: error: missing argument label 'state:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/ObserveOn.swift:94:26: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/ObserveOnSerialDispatchQueue.swift:34:30: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/ObserveOnSerialDispatchQueue.swift:45:32: error: missing argument label 'state:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observers/ObserverBase.swift:20:24: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observers/ObserverBase.swift:22:15: error: enum case 'Error' not found in type 'Event<ElementType>'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observers/ObserverBase.swift:28:20: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/ObserverType.swift:53:31: error: 'ErrorType' has been renamed to 'Error'
    - NOTE  | [OSX] xcodebuild:  final func onError(error: ErrorType) {
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/ObserverType.swift:39:12: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/ObserverType.swift:46:12: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/OperationQueueScheduler.swift:17:32: error: 'NSOperationQueue' has been renamed to 'OperationQueue'
    - NOTE  | xcodebuild:  <unknown>:0: note: 'NSOperationQueue' was obsoleted in Swift 3
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/OperationQueueScheduler.swift:24:33: error: 'NSOperationQueue' has been renamed to 'OperationQueue'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/OperationQueueScheduler.swift:41:25: error: 'NSBlockOperation' has been renamed to 'BlockOperation'
    - NOTE  | [OSX] xcodebuild:  <unknown>:0: note: 'NSBlockOperation' was obsoleted in Swift 3
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/OperationQueueScheduler.swift:46:30: error: closure use of non-escaping parameter 'action' may allow it to escape
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/OperationQueueScheduler.swift:35:55: note: parameter 'action' is implicitly non-escaping
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Platform/Platform.Darwin.swift:26:33: error: 'NSThread' has been renamed to 'Thread'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Platform/Platform.Darwin.swift:38:33: error: 'NSThread' has been renamed to 'Thread'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/DataStructures/PriorityQueue.swift:118:16: error: '_elements' is inaccessible due to 'private' protection level
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/DataStructures/PriorityQueue.swift:13:17: note: '_elements' declared here
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/DataStructures/PriorityQueue.swift:16:30: error: assigning non-escaping parameter 'hasHigherPriority' to an @escaping closure
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/DataStructures/PriorityQueue.swift:15:10: note: parameter 'hasHigherPriority' is implicitly non-escaping
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/DataStructures/PriorityQueue.swift:21:32: error: missing argument label 'initialUnbalancedIndex:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/DataStructures/PriorityQueue.swift:37:18: error: missing argument label 'index:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/DataStructures/PriorityQueue.swift:45:26: error: missing argument label 'index:' in call
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/DataStructures/PriorityQueue.swift:57:19: warning: result of call to 'popLast()' is unused
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/DataStructures/PriorityQueue.swift:60:36: error: missing argument label 'initialUnbalancedIndex:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/DataStructures/PriorityQueue.swift:61:35: error: missing argument label 'initialUnbalancedIndex:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Producer.swift:18:24: error: missing argument label 'observer:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Producer.swift:21:60: error: missing argument label 'state:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Subjects/PublishSubject.swift:62:26: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Subjects/PublishSubject.swift:75:27: error: enum case 'Error' not found in type 'Event<Element>'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Subjects/PublishSubject.swift:96:40: error: missing argument label 'observer:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Subjects/PublishSubject.swift:101:25: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Subjects/PublishSubject.swift:106:25: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Subjects/PublishSubject.swift:110:37: error: missing argument label 'element:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Subjects/PublishSubject.swift:116:35: error: missing argument label 'disposeKey:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Subjects/PublishSubject.swift:120:34: error: missing argument label 'key:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/DataStructures/Queue.swift:23:34: error: 'AnyGenerator' has been renamed to 'AnyIterator'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/DataStructures/Queue.swift:40:57: error: argument 'repeatedValue' must precede argument 'count'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/DataStructures/Queue.swift:72:59: error: argument 'repeatedValue' must precede argument 'count'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/DataStructures/Queue.swift:99:22: error: missing argument label 'size:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/DataStructures/Queue.swift:137:26: error: missing argument label 'size:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Range.swift:17:18: error: binary operator '<' cannot be applied to operands of type 'E' and 'Int'
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Range.swift:17:18: note: expected an argument list of type '(Int, Int)'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Range.swift:18:26: error: missing argument label 'lastMessage:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Range.swift:21:28: error: binary operator '-' cannot be applied to operands of type 'E' and 'Int'
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Range.swift:21:28: note: overloads for '-' exist with these partially matching parameter lists: (Int, Int), (UnsafeMutablePointer<Pointee>, Int), (UnsafePointer<Pointee>, Int)
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Range.swift:22:26: error: missing argument label 'lastMessage:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Range.swift:48:24: error: '_scheduler' is inaccessible due to 'private' protection level
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Range.swift:14:17: note: '_scheduler' declared here
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/RecursiveScheduler.swift:26:19: error: assigning non-escaping parameter 'action' to an @escaping closure
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/RecursiveScheduler.swift:25:36: note: parameter 'action' is implicitly non-escaping
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/RecursiveScheduler.swift:85:36: error: missing argument label 'state:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/RecursiveScheduler.swift:138:19: error: assigning non-escaping parameter 'action' to an @escaping closure
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/RecursiveScheduler.swift:137:10: note: parameter 'action' is implicitly non-escaping
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/RecursiveScheduler.swift:155:36: error: missing argument label 'state:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Reduce.swift:20:32: error: '_seed' is inaccessible due to 'private' protection level
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Reduce.swift:58:17: note: '_seed' declared here
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Reduce.swift:29:45: error: '_accumulator' is inaccessible due to 'private' protection level
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Reduce.swift:59:17: note: '_accumulator' declared here
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Reduce.swift:32:27: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Reduce.swift:35:15: error: enum case 'Error' not found in type 'Event<SourceType>'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Reduce.swift:40:42: error: '_mapResult' is inaccessible due to 'private' protection level
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Reduce.swift:60:17: note: '_mapResult' declared here
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Reduce.swift:42:27: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Reduce.swift:46:27: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Reduce.swift:65:24: error: assigning non-escaping parameter 'accumulator' to an @escaping closure
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Reduce.swift:62:64: note: parameter 'accumulator' is implicitly non-escaping
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Reduce.swift:66:22: error: assigning non-escaping parameter 'mapResult' to an @escaping closure
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Reduce.swift:62:94: note: parameter 'mapResult' is implicitly non-escaping
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Reduce.swift:31:13: warning: 'catch' block is unreachable because no errors are thrown in 'do' block
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/RefCount.swift:25:36: error: '_source' is inaccessible due to 'private' protection level
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/RefCount.swift:73:17: note: '_source' declared here
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/RefCount.swift:27:17: error: '_lock' is inaccessible due to 'private' protection level
    - NOTE  | xcodebuild:  RxSwift/RxSwift/Observables/Implementations/RefCount.swift:67:17: note: '_lock' declared here
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/RefCount.swift:28:24: error: '_count' is inaccessible due to 'private' protection level
    - NOTE  | xcodebuild:  RxSwift/RxSwift/Observables/Implementations/RefCount.swift:70:17: note: '_count' declared here
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/RefCount.swift:29:25: error: '_count' is inaccessible due to 'private' protection level
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/RefCount.swift:30:25: error: '_connectableSubscription' is inaccessible due to 'private' protection level
    - NOTE  | xcodebuild:  RxSwift/RxSwift/Observables/Implementations/RefCount.swift:71:17: note: '_connectableSubscription' declared here
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/RefCount.swift:33:25: error: '_count' is inaccessible due to 'private' protection level
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/RefCount.swift:39:26: error: '_lock' is inaccessible due to 'private' protection level
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/RefCount.swift:40:33: error: '_count' is inaccessible due to 'private' protection level
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/RefCount.swift:41:34: error: '_connectableSubscription' is inaccessible due to 'private' protection level
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/RefCount.swift:42:34: error: '_count' is inaccessible due to 'private' protection level
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/RefCount.swift:43:34: error: '_connectableSubscription' is inaccessible due to 'private' protection level
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/RefCount.swift:45:38: error: '_count' is inaccessible due to 'private' protection level
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/RefCount.swift:46:34: error: '_count' is inaccessible due to 'private' protection level
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/RefCount.swift:49:34: error: missing argument label 'lastMessage:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/RefCount.swift:58:23: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/RefCount.swift:59:15: error: enum case 'Error' not found in type 'Event<CO.E>'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/RefCount.swift:60:23: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/RefCount.swift:27:47: error: '_lock' is inaccessible due to 'private' protection level
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/RefCount.swift:39:61: error: '_lock' is inaccessible due to 'private' protection level
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Disposables/RefCountDisposable.swift:46:42: error: missing argument label 'i:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Disposables/RefCountDisposable.swift:48:34: error: missing argument label 'lastMessage:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Disposables/RefCountDisposable.swift:86:42: error: missing argument label 'i:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Disposables/RefCountDisposable.swift:88:34: error: missing argument label 'lastMessage:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Disposables/RefCountDisposable.swift:92:34: error: missing argument label 'lastMessage:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Disposables/RefCountDisposable.swift:124:21: error: 'release' is inaccessible due to 'private' protection level
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Disposables/RefCountDisposable.swift:82:18: note: 'release' declared here
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Repeat.swift:39:24: error: '_scheduler' is inaccessible due to 'private' protection level
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Repeat.swift:13:17: note: '_scheduler' declared here
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Subjects/ReplaySubject.swift:108:26: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Subjects/ReplaySubject.swift:112:9: error: '_lock' is inaccessible due to 'private' protection level
    - NOTE  | xcodebuild:  RxSwift/RxSwift/Subjects/ReplaySubject.swift:31:17: note: '_lock' declared here
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Subjects/ReplaySubject.swift:113:12: error: '_disposed' is inaccessible due to 'private' protection level
    - NOTE  | xcodebuild:  RxSwift/RxSwift/Subjects/ReplaySubject.swift:34:17: note: '_disposed' declared here
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Subjects/ReplaySubject.swift:117:12: error: '_stoppedEvent' is inaccessible due to 'private' protection level
    - NOTE  | xcodebuild:  RxSwift/RxSwift/Subjects/ReplaySubject.swift:35:17: note: '_stoppedEvent' declared here
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Subjects/ReplaySubject.swift:123:30: error: missing argument label 'value:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Subjects/ReplaySubject.swift:125:20: error: '_observers' is inaccessible due to 'private' protection level
    - NOTE  | xcodebuild:  RxSwift/RxSwift/Subjects/ReplaySubject.swift:36:17: note: '_observers' declared here
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Subjects/ReplaySubject.swift:126:15: error: enum case 'Error' not found in type 'Event<Element>'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Subjects/ReplaySubject.swift:127:13: error: '_stoppedEvent' is inaccessible due to 'private' protection level
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Subjects/ReplaySubject.swift:129:29: error: '_observers' is inaccessible due to 'private' protection level
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Subjects/ReplaySubject.swift:130:13: error: '_observers' is inaccessible due to 'private' protection level
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Subjects/ReplaySubject.swift:136:9: error: '_lock' is inaccessible due to 'private' protection level
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Subjects/ReplaySubject.swift:137:40: error: missing argument label 'observer:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Subjects/ReplaySubject.swift:141:12: error: '_disposed' is inaccessible due to 'private' protection level
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Subjects/ReplaySubject.swift:142:25: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Subjects/ReplaySubject.swift:148:22: error: missing argument label 'observer:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Subjects/ReplaySubject.swift:149:31: error: '_stoppedEvent' is inaccessible due to 'private' protection level
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Subjects/ReplaySubject.swift:154:23: error: '_observers' is inaccessible due to 'private' protection level
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Subjects/ReplaySubject.swift:160:9: error: '_lock' is inaccessible due to 'private' protection level
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Subjects/ReplaySubject.swift:161:35: error: missing argument label 'disposeKey:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Subjects/ReplaySubject.swift:165:12: error: '_disposed' is inaccessible due to 'private' protection level
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Subjects/ReplaySubject.swift:169:13: error: '_observers' is inaccessible due to 'private' protection level
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Subjects/ReplaySubject.swift:179:9: error: '_lock' is inaccessible due to 'private' protection level
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Subjects/ReplaySubject.swift:184:9: error: '_disposed' is inaccessible due to 'private' protection level
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Subjects/ReplaySubject.swift:185:9: error: '_stoppedEvent' is inaccessible due to 'private' protection level
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Subjects/ReplaySubject.swift:186:9: error: '_observers' is inaccessible due to 'private' protection level
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Subjects/ReplaySubject.swift:207:25: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Subjects/ReplaySubject.swift:225:24: error: missing argument label 'element:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Subjects/ReplaySubject.swift:229:21: error: type 'Queue<Element>' does not conform to protocol 'Sequence'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Subjects/ReplaySubject.swift:250:15: error: '_queue' is inaccessible due to 'private' protection level
    - NOTE  | xcodebuild:  RxSwift/RxSwift/Subjects/ReplaySubject.swift:218:17: note: '_queue' declared here
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Subjects/ReplaySubject.swift:251:13: error: '_queue' is inaccessible due to 'private' protection level
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Subjects/ReplaySubject.swift:112:31: error: '_lock' is inaccessible due to 'private' protection level
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Subjects/ReplaySubject.swift:136:31: error: '_lock' is inaccessible due to 'private' protection level
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Subjects/ReplaySubject.swift:160:31: error: '_lock' is inaccessible due to 'private' protection level
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Subjects/ReplaySubject.swift:179:31: error: '_lock' is inaccessible due to 'private' protection level
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/RetryWhen.swift:91:29: error: 'ErrorType' has been renamed to 'Error'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/RetryWhen.swift:135:27: error: 'Generator' is not a member type of 'S'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/RetryWhen.swift:138:39: error: single argument function types require parentheses
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/RetryWhen.swift:145:19: error: method does not override any method from its superclass
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/RetryWhen.swift:26:21: error: '_parent' is inaccessible due to 'private' protection level
    - NOTE  | xcodebuild:  RxSwift/RxSwift/Observables/Implementations/RetryWhen.swift:44:17: note: '_parent' declared here
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/RetryWhen.swift:27:21: error: '_parent' is inaccessible due to 'private' protection level
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/RetryWhen.swift:28:15: error: enum case 'Error' not found in type 'Event<TriggerObservable.E>'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/RetryWhen.swift:30:21: error: '_parent' is inaccessible due to 'private' protection level
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/RetryWhen.swift:32:21: error: '_parent' is inaccessible due to 'private' protection level
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/RetryWhen.swift:33:21: error: '_parent' is inaccessible due to 'private' protection level
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/RetryWhen.swift:62:56: error: '_notifier' is inaccessible due to 'private' protection level
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/RetryWhen.swift:94:17: note: '_notifier' declared here
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/RetryWhen.swift:98:27: error: '_notificationHandler' is inaccessible due to 'private' protection level
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/RetryWhen.swift:138:17: note: '_notificationHandler' declared here
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/RetryWhen.swift:108:23: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/RetryWhen.swift:142:32: error: assigning non-escaping parameter 'notificationHandler' to an @escaping closure
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/RetryWhen.swift:140:22: note: parameter 'notificationHandler' is implicitly non-escaping
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Rx.swift:18:18: error: missing argument label 'lastMessage:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Rx.swift:28:23: error: thrown expression type 'RxError' does not conform to 'Error'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Rx.swift:37:23: error: thrown expression type 'RxError' does not conform to 'Error'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Sample.swift:30:24: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Sample.swift:36:38: error: '_element' is inaccessible due to 'private' protection level
    - NOTE  | xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Sample.swift:77:17: note: '_element' declared here
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Sample.swift:37:28: error: '_parent' is inaccessible due to 'private' protection level
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Sample.swift:72:17: note: '_parent' declared here
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Sample.swift:38:29: error: '_element' is inaccessible due to 'private' protection level
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Sample.swift:44:24: error: '_atEnd' is inaccessible due to 'private' protection level
    - NOTE  | xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Sample.swift:78:17: note: '_atEnd' declared here
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Sample.swift:45:35: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Sample.swift:48:15: error: enum case 'Error' not found in type 'Event<SampleType>'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Sample.swift:52:38: error: '_element' is inaccessible due to 'private' protection level
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Sample.swift:53:25: error: '_element' is inaccessible due to 'private' protection level
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Sample.swift:56:24: error: '_atEnd' is inaccessible due to 'private' protection level
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Sample.swift:57:35: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Sample.swift:88:50: error: '_source' is inaccessible due to 'private' protection level
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Sample.swift:114:17: note: '_source' declared here
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Sample.swift:89:43: error: '_sampler' is inaccessible due to 'private' protection level
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Sample.swift:115:17: note: '_sampler' declared here
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Sample.swift:95:24: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Sample.swift:102:15: error: enum case 'Error' not found in type 'Event<O.E>'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Sample.swift:103:23: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Scan.swift:20:30: error: '_seed' is inaccessible due to 'private' protection level
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Scan.swift:50:17: note: '_seed' declared here
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Scan.swift:28:43: error: '_accumulator' is inaccessible due to 'private' protection level
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Scan.swift:51:17: note: '_accumulator' declared here
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Scan.swift:29:27: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Scan.swift:32:27: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Scan.swift:35:15: error: enum case 'Error' not found in type 'Event<ElementType>'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Scan.swift:39:23: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Scan.swift:56:24: error: assigning non-escaping parameter 'accumulator' to an @escaping closure
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Scan.swift:53:57: note: parameter 'accumulator' is implicitly non-escaping
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Scan.swift:31:13: warning: 'catch' block is unreachable because no errors are thrown in 'do' block
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Disposables/ScheduledDisposable.swift:11:41: error: single argument function types require parentheses
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Disposables/ScheduledDisposable.swift:49:27: error: missing argument label 'state:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/Internal/ScheduledItem.swift:26:19: error: assigning non-escaping parameter 'action' to an @escaping closure
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/Internal/ScheduledItem.swift:25:10: note: parameter 'action' is implicitly non-escaping
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/SchedulerServices+Emulation.swift:17:33: error: single argument function types require parentheses
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/SchedulerServices+Emulation.swift:51:26: error: missing argument label 'command:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Sequence.swift:22:24: error: '_scheduler' is inaccessible due to 'private' protection level
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Sequence.swift:36:17: note: '_scheduler' declared here
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Sequence.swift:47:29: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Sequence.swift:50:25: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/SerialDispatchQueueScheduler.swift:29:37: error: 'NSTimeInterval' has been renamed to 'TimeInterval'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/SerialDispatchQueueScheduler.swift:32:32: error: 'dispatch_queue_t' is unavailable in Swift
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/SerialDispatchQueueScheduler.swift:128:78: error: 'NSTimeInterval' has been renamed to 'TimeInterval'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/SerialDispatchQueueScheduler.swift:102:37: error: missing argument label 'state:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/SerialDispatchQueueScheduler.swift:129:44: error: use of unresolved identifier 'DISPATCH_SOURCE_TYPE_TIMER'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/SerialDispatchQueueScheduler.swift:161:44: error: use of unresolved identifier 'DISPATCH_SOURCE_TYPE_TIMER'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/SerialDispatchQueueScheduler.swift:178:26: error: closure use of non-escaping parameter 'action' may allow it to escape
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/SerialDispatchQueueScheduler.swift:160:111: note: parameter 'action' is implicitly non-escaping
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/SerialDispatchQueueScheduler.swift:140:47: error: closure use of non-escaping parameter 'action' may allow it to escape
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/SerialDispatchQueueScheduler.swift:128:94: note: parameter 'action' is implicitly non-escaping
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/SerialDispatchQueueScheduler.swift:114:33: error: closure use of non-escaping parameter 'action' may allow it to escape
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/SerialDispatchQueueScheduler.swift:105:56: note: parameter 'action' is implicitly non-escaping
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/ShareReplay1.swift:35:40: error: missing argument label 'observer:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/ShareReplay1.swift:40:25: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/ShareReplay1.swift:44:25: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/ShareReplay1.swift:50:49: error: missing argument label 'element:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/ShareReplay1.swift:64:35: error: missing argument label 'disposeKey:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/ShareReplay1.swift:69:38: error: missing argument label 'key:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/ShareReplay1.swift:80:26: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/ShareReplay1.swift:92:15: error: enum case 'Error' not found in type 'Event<Element>'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/ShareReplay1WhileConnected.swift:33:40: error: missing argument label 'observer:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/ShareReplay1WhileConnected.swift:38:25: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/ShareReplay1WhileConnected.swift:43:49: error: missing argument label 'element:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/ShareReplay1WhileConnected.swift:57:35: error: missing argument label 'disposeKey:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/ShareReplay1WhileConnected.swift:62:38: error: missing argument label 'key:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/ShareReplay1WhileConnected.swift:74:26: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/ShareReplay1WhileConnected.swift:83:15: error: enum case 'Error' not found in type 'Event<Element>'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Disposables/SingleAssignmentDisposable.swift:49:28: error: missing argument label 'newValue:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Disposables/SingleAssignmentDisposable.swift:56:26: error: missing argument label 'lastMessage:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/SingleAsync.swift:27:43: error: '_predicate' is inaccessible due to 'private' protection level
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/SingleAsync.swift:64:17: note: '_predicate' declared here
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/SingleAsync.swift:33:43: error: 'ErrorType' has been renamed to 'Error'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/SingleAsync.swift:40:27: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/SingleAsync.swift:42:27: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/SingleAsync.swift:46:15: error: enum case 'Error' not found in type 'Event<ElementType>'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/SingleAsync.swift:47:23: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/SingleAsync.swift:51:27: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/SingleAsync.swift:53:27: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Sink.swift:25:22: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Sink.swift:51:22: error: '_observer' is inaccessible due to 'private' protection level
    - NOTE  | xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Sink.swift:12:17: note: '_observer' declared here
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Sink.swift:52:15: error: enum case 'Error' not found in type 'Event<O.E>'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Sink.swift:53:22: error: '_observer' is inaccessible due to 'private' protection level
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Skip.swift:32:27: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Skip.swift:37:15: error: enum case 'Error' not found in type 'Event<ElementType>'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Skip.swift:38:23: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Skip.swift:41:23: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Skip.swift:85:27: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Skip.swift:87:15: error: enum case 'Error' not found in type 'Event<ElementType>'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Skip.swift:88:23: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Skip.swift:91:23: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/SkipUntil.swift:34:24: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/SkipUntil.swift:40:21: error: '_forwardElements' is inaccessible due to 'private' protection level
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/SkipUntil.swift:69:17: note: '_forwardElements' declared here
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/SkipUntil.swift:42:15: error: enum case 'Error' not found in type 'Event<Other>'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/SkipUntil.swift:79:24: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/SkipUntil.swift:86:27: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/SkipUntil.swift:88:15: error: enum case 'Error' not found in type 'Event<ElementType>'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/SkipUntil.swift:89:23: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/SkipUntil.swift:93:27: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/SkipUntil.swift:100:42: error: '_source' is inaccessible due to 'private' protection level
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/SkipUntil.swift:112:17: note: '_source' declared here
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/SkipUntil.swift:102:41: error: '_other' is inaccessible due to 'private' protection level
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/SkipUntil.swift:113:17: note: '_other' declared here
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/SkipUntil.swift:106:49: error: missing argument label 'disposable1' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/SkipWhile.swift:27:45: error: '_predicate' is inaccessible due to 'private' protection level
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/SkipWhile.swift:88:17: note: '_predicate' declared here
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/SkipWhile.swift:29:31: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/SkipWhile.swift:36:27: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/SkipWhile.swift:38:15: error: enum case 'Error' not found in type 'Event<ElementType>'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/SkipWhile.swift:39:23: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/SkipWhile.swift:64:45: error: '_predicateWithIndex' is inaccessible due to 'private' protection level
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/SkipWhile.swift:89:17: note: '_predicateWithIndex' declared here
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/SkipWhile.swift:65:42: error: missing argument label 'i:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/SkipWhile.swift:67:31: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/SkipWhile.swift:74:27: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/SkipWhile.swift:76:15: error: enum case 'Error' not found in type 'Event<ElementType>'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/SkipWhile.swift:77:23: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/SkipWhile.swift:93:22: error: assigning non-escaping parameter 'predicate' to an @escaping closure
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/SkipWhile.swift:91:39: note: parameter 'predicate' is implicitly non-escaping
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/SkipWhile.swift:100:31: error: assigning non-escaping parameter 'predicate' to an @escaping closure
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/SkipWhile.swift:97:39: note: parameter 'predicate' is implicitly non-escaping
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/SkipWhile.swift:28:19: warning: 'catch' block is unreachable because no errors are thrown in 'do' block
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/SkipWhile.swift:66:19: warning: 'catch' block is unreachable because no errors are thrown in 'do' block
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/StartWith.swift:23:25: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Extensions/String+Rx.swift:18:27: error: 'predecessor()' is unavailable: To get the previous index call 'index(before:)' on the CharacterView instance that produced the index.
    - NOTE  | [OSX] xcodebuild:  Swift.String.CharacterView.Index:5:17: note: 'predecessor()' has been explicitly marked unavailable here
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/SubscribeOn.swift:23:19: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/SubscribeOn.swift:36:62: error: missing argument label 'state:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Disposables/SubscriptionDisposable.swift:21:41: error: missing argument label 'disposeKey:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Switch.swift:147:26: error: single argument function types require parentheses
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Switch.swift:35:49: error: missing argument label 'disposable1' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Switch.swift:39:24: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Switch.swift:50:49: error: missing argument label 'element:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Switch.swift:63:27: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Switch.swift:66:15: error: enum case 'Error' not found in type 'Event<SourceType>'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Switch.swift:75:27: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Switch.swift:104:24: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Switch.swift:110:15: error: enum case 'Error' not found in type 'Event<S.E>'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Switch.swift:114:20: error: '_latest' is inaccessible due to 'private' protection level
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Switch.swift:25:17: note: '_latest' declared here
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Switch.swift:120:31: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Switch.swift:121:15: error: enum case 'Error' not found in type 'Event<S.E>'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Switch.swift:122:31: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Switch.swift:125:21: error: '_hasLatest' is inaccessible due to 'private' protection level
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Switch.swift:26:17: note: '_hasLatest' declared here
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Switch.swift:126:24: error: '_stopped' is inaccessible due to 'private' protection level
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Switch.swift:24:17: note: '_stopped' declared here
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Switch.swift:127:35: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Switch.swift:152:21: error: assigning non-escaping parameter 'selector' to an @escaping closure
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Switch.swift:151:10: note: parameter 'selector' is implicitly non-escaping
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Switch.swift:172:36: error: missing argument label 'source:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Switch.swift:185:21: error: assigning non-escaping parameter 'selector' to an @escaping closure
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Switch.swift:183:42: note: parameter 'selector' is implicitly non-escaping
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Switch.swift:190:36: error: missing argument label 'source:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Concurrency/SynchronizedOnType.swift:18:26: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Concurrency/SynchronizedSubscribeType.swift:18:40: error: missing argument label 'observer:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observers/TailRecursiveSink.swift:47:10: error: method 'invoke(command:)' has different argument names from those required by protocol 'InvocableWithValueType' ('invoke(value:)')
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/Internal/InvocableType.swift:18:10: note: requirement 'invoke(value:)' declared here
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observers/TailRecursiveSink.swift:42:18: error: missing argument label 'command:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observers/TailRecursiveSink.swift:58:22: error: missing argument label 'action:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observers/TailRecursiveSink.swift:62:19: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observers/TailRecursiveSink.swift:149:18: error: missing argument label 'command:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Take.swift:23:29: error: '_count' is inaccessible due to 'private' protection level
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Take.swift:54:17: note: '_count' declared here
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Take.swift:34:27: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Take.swift:37:31: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Take.swift:41:15: error: enum case 'Error' not found in type 'Event<ElementType>'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Take.swift:42:23: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Take.swift:45:23: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Take.swift:58:26: error: missing argument label 'lastMessage:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Take.swift:91:24: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Take.swift:97:23: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Take.swift:98:15: error: enum case 'Error' not found in type 'Event<ElementType>'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Take.swift:99:23: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Take.swift:102:23: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Take.swift:110:19: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Take.swift:115:36: error: '_scheduler' is inaccessible due to 'private' protection level
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Take.swift:131:17: note: '_scheduler' declared here
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Take.swift:120:43: error: '_source' is inaccessible due to 'private' protection level
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Take.swift:129:17: note: '_source' declared here
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/TakeLast.swift:22:57: error: '_count' is inaccessible due to 'private' protection level
    - NOTE  | xcodebuild:  RxSwift/RxSwift/Observables/Implementations/TakeLast.swift:48:17: note: '_count' declared here
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/TakeLast.swift:29:31: error: missing argument label 'element:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/TakeLast.swift:30:47: error: '_count' is inaccessible due to 'private' protection level
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/TakeLast.swift:31:27: warning: result of call to 'dequeue()' is unused
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/TakeLast.swift:33:15: error: enum case 'Error' not found in type 'Event<ElementType>'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/TakeLast.swift:34:23: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/TakeLast.swift:37:22: error: type 'Queue<ElementType>' does not conform to protocol 'Sequence'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/TakeLast.swift:40:23: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/TakeLast.swift:52:26: error: missing argument label 'lastMessage:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/TakeUntil.swift:34:24: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/TakeUntil.swift:40:31: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/TakeUntil.swift:42:15: error: enum case 'Error' not found in type 'Event<Other>'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/TakeUntil.swift:46:21: error: '_open' is inaccessible due to 'private' protection level
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/TakeUntil.swift:71:17: note: '_open' declared here
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/TakeUntil.swift:79:24: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/TakeUntil.swift:85:23: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/TakeUntil.swift:86:15: error: enum case 'Error' not found in type 'Event<ElementType>'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/TakeUntil.swift:87:23: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/TakeUntil.swift:90:23: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/TakeUntil.swift:97:41: error: '_other' is inaccessible due to 'private' protection level
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/TakeUntil.swift:108:17: note: '_other' declared here
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/TakeUntil.swift:99:42: error: '_source' is inaccessible due to 'private' protection level
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/TakeUntil.swift:107:17: note: '_source' declared here
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/TakeWhile.swift:34:40: error: '_predicate' is inaccessible due to 'private' protection level
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/TakeWhile.swift:106:17: note: '_predicate' declared here
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/TakeWhile.swift:36:27: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/TakeWhile.swift:42:27: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/TakeWhile.swift:44:27: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/TakeWhile.swift:47:15: error: enum case 'Error' not found in type 'Event<ElementType>'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/TakeWhile.swift:48:23: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/TakeWhile.swift:79:40: error: '_predicateWithIndex' is inaccessible due to 'private' protection level
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/TakeWhile.swift:107:17: note: '_predicateWithIndex' declared here
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/TakeWhile.swift:80:38: error: missing argument label 'i:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/TakeWhile.swift:82:27: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/TakeWhile.swift:88:27: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/TakeWhile.swift:90:27: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/TakeWhile.swift:93:15: error: enum case 'Error' not found in type 'Event<ElementType>'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/TakeWhile.swift:94:23: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/TakeWhile.swift:111:22: error: assigning non-escaping parameter 'predicate' to an @escaping closure
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/TakeWhile.swift:109:39: note: parameter 'predicate' is implicitly non-escaping
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/TakeWhile.swift:118:31: error: assigning non-escaping parameter 'predicate' to an @escaping closure
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/TakeWhile.swift:115:39: note: parameter 'predicate' is implicitly non-escaping
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/TakeWhile.swift:35:15: warning: 'catch' block is unreachable because no errors are thrown in 'do' block
    - WARN  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/TakeWhile.swift:81:15: warning: 'catch' block is unreachable because no errors are thrown in 'do' block
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Throttle.swift:36:36: error: '_source' is inaccessible due to 'private' protection level
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Throttle.swift:88:17: note: '_source' declared here
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Throttle.swift:42:24: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Throttle.swift:53:37: error: '_scheduler' is inaccessible due to 'private' protection level
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Throttle.swift:90:17: note: '_scheduler' declared here
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Throttle.swift:59:15: error: enum case 'Error' not found in type 'Event<O.E>'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Throttle.swift:61:23: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Throttle.swift:66:27: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Throttle.swift:68:23: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Throttle.swift:79:27: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Timeout.swift:36:39: error: '_source' is inaccessible due to 'private' protection level
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Timeout.swift:103:17: note: '_source' declared here
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Timeout.swift:38:49: error: missing argument label 'disposable1' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Timeout.swift:54:27: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Timeout.swift:57:15: error: enum case 'Error' not found in type 'Event<ElementType>'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Timeout.swift:68:27: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Timeout.swift:82:40: error: '_scheduler' is inaccessible due to 'private' protection level
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Timeout.swift:106:17: note: '_scheduler' declared here
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Timer.swift:22:24: error: '_scheduler' is inaccessible due to 'private' protection level
    - NOTE  | xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Timer.swift:50:17: note: '_scheduler' declared here
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Timer.swift:40:24: error: '_scheduler' is inaccessible due to 'private' protection level
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/ToArray.swift:27:15: error: enum case 'Error' not found in type 'Event<SourceType>'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/ToArray.swift:31:23: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/ToArray.swift:32:23: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Using.swift:27:40: error: '_resourceFactory' is inaccessible due to 'private' protection level
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Using.swift:64:17: note: '_resourceFactory' declared here
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Using.swift:37:17: error: missing argument label 'disposable1' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Using.swift:46:23: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Using.swift:47:19: error: enum case 'Error' not found in type 'Event<SourceType>'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Using.swift:51:23: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Using.swift:69:28: error: assigning non-escaping parameter 'resourceFactory' to an @escaping closure
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Using.swift:68:10: note: parameter 'resourceFactory' is implicitly non-escaping
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Using.swift:70:30: error: assigning non-escaping parameter 'observableFactory' to an @escaping closure
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Using.swift:68:44: note: parameter 'observableFactory' is implicitly non-escaping
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Subjects/Variable.swift:45:25: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Subjects/Variable.swift:67:21: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/VirtualTimeScheduler.swift:75:63: error: single argument function types require parentheses
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/VirtualTimeScheduler.swift:89:96: error: single argument function types require parentheses
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/VirtualTimeScheduler.swift:104:108: error: single argument function types require parentheses
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/VirtualTimeScheduler.swift:117:111: error: single argument function types require parentheses
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/VirtualTimeScheduler.swift:34:50: error: missing argument label 'virtualTime:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/VirtualTimeScheduler.swift:254:21: error: '_schedulerQueue' is inaccessible due to 'private' protection level
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/VirtualTimeScheduler.swift:25:17: note: '_schedulerQueue' declared here
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/VirtualTimeScheduler.swift:54:49: error: missing argument label 'lhs' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/VirtualTimeScheduler.swift:106:39: error: missing argument label 'state:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/VirtualTimeScheduler.swift:129:33: error: missing argument label 'element:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/VirtualTimeScheduler.swift:131:43: error: missing argument label 'disposable:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/VirtualTimeScheduler.swift:159:46: error: missing argument label 'lhs' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/VirtualTimeScheduler.swift:164:36: error: missing argument label 'element:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/VirtualTimeScheduler.swift:173:40: error: missing argument label 'element:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/VirtualTimeScheduler.swift:201:46: error: missing argument label 'lhs' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/VirtualTimeScheduler.swift:205:46: error: missing argument label 'lhs' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/VirtualTimeScheduler.swift:210:36: error: missing argument label 'element:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/VirtualTimeScheduler.swift:224:42: error: missing argument label 'lhs' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/VirtualTimeScheduler.swift:273:23: error: assigning non-escaping parameter 'action' to an @escaping closure
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/VirtualTimeScheduler.swift:272:10: note: parameter 'action' is implicitly non-escaping
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/VirtualTimeScheduler.swift:77:20: error: closure use of non-escaping parameter 'action' may allow it to escape
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Schedulers/VirtualTimeScheduler.swift:75:55: note: parameter 'action' is implicitly non-escaping
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Window.swift:34:40: error: missing argument label 'disposable:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Window.swift:42:19: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Window.swift:43:21: error: missing argument label 'windowId:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Window.swift:45:40: error: missing argument label 'disposable:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Window.swift:50:21: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Window.swift:53:19: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Window.swift:57:24: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Window.swift:66:25: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Window.swift:69:38: error: missing argument label 'i:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Window.swift:71:41: error: 'ErrorType' has been renamed to 'Error'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Window.swift:75:35: error: '_count' is inaccessible due to 'private' protection level
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Window.swift:136:17: note: '_count' declared here
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Window.swift:83:15: error: enum case 'Error' not found in type 'Event<Element>'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Window.swift:88:25: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Window.swift:89:23: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Window.swift:94:25: error: missing argument label 'windowId:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Window.swift:111:40: error: '_scheduler' is inaccessible due to 'private' protection level
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Window.swift:137:17: note: '_scheduler' declared here
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/WithLatestFrom.swift:35:46: error: '_second' is inaccessible due to 'private' protection level
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/WithLatestFrom.swift:108:17: note: '_second' declared here
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/WithLatestFrom.swift:36:39: error: '_first' is inaccessible due to 'private' protection level
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/WithLatestFrom.swift:107:17: note: '_first' declared here
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/WithLatestFrom.swift:42:24: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/WithLatestFrom.swift:50:39: error: '_resultSelector' is inaccessible due to 'private' protection level
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/WithLatestFrom.swift:109:17: note: '_resultSelector' declared here
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/WithLatestFrom.swift:54:27: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/WithLatestFrom.swift:58:23: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/WithLatestFrom.swift:60:19: error: enum case 'Error' not found in type 'Event<FirstType>'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/WithLatestFrom.swift:88:24: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/WithLatestFrom.swift:94:21: error: '_latest' is inaccessible due to 'private' protection level
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/WithLatestFrom.swift:23:17: note: '_latest' declared here
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/WithLatestFrom.swift:97:19: error: enum case 'Error' not found in type 'Event<SecondType>'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/WithLatestFrom.swift:114:27: error: assigning non-escaping parameter 'resultSelector' to an @escaping closure
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/WithLatestFrom.swift:111:72: note: parameter 'resultSelector' is implicitly non-escaping
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Zip+arity.swift:56:26: error: missing argument label 'lastMessage:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Zip+arity.swift:66:112: error: missing argument label 'element:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Zip+arity.swift:67:112: error: missing argument label 'element:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Zip+arity.swift:95:27: error: assigning non-escaping parameter 'resultSelector' to an @escaping closure
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Zip+arity.swift:91:60: note: parameter 'resultSelector' is implicitly non-escaping
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Zip+arity.swift:151:26: error: missing argument label 'lastMessage:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Zip+arity.swift:162:112: error: missing argument label 'element:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Zip+arity.swift:163:112: error: missing argument label 'element:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Zip+arity.swift:164:112: error: missing argument label 'element:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Zip+arity.swift:196:27: error: assigning non-escaping parameter 'resultSelector' to an @escaping closure
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Zip+arity.swift:191:85: note: parameter 'resultSelector' is implicitly non-escaping
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Zip+arity.swift:254:26: error: missing argument label 'lastMessage:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Zip+arity.swift:266:112: error: missing argument label 'element:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Zip+arity.swift:267:112: error: missing argument label 'element:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Zip+arity.swift:268:112: error: missing argument label 'element:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Zip+arity.swift:269:112: error: missing argument label 'element:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Zip+arity.swift:305:27: error: assigning non-escaping parameter 'resultSelector' to an @escaping closure
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Zip+arity.swift:299:110: note: parameter 'resultSelector' is implicitly non-escaping
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Zip+arity.swift:365:26: error: missing argument label 'lastMessage:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Zip+arity.swift:378:112: error: missing argument label 'element:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Zip+arity.swift:379:112: error: missing argument label 'element:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Zip+arity.swift:380:112: error: missing argument label 'element:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Zip+arity.swift:381:112: error: missing argument label 'element:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Zip+arity.swift:382:112: error: missing argument label 'element:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Zip+arity.swift:422:27: error: assigning non-escaping parameter 'resultSelector' to an @escaping closure
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Zip+arity.swift:415:135: note: parameter 'resultSelector' is implicitly non-escaping
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Zip+arity.swift:484:26: error: missing argument label 'lastMessage:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Zip+arity.swift:498:112: error: missing argument label 'element:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Zip+arity.swift:499:112: error: missing argument label 'element:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Zip+arity.swift:500:112: error: missing argument label 'element:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Zip+arity.swift:501:112: error: missing argument label 'element:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Zip+arity.swift:502:112: error: missing argument label 'element:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Zip+arity.swift:503:112: error: missing argument label 'element:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Zip+arity.swift:547:27: error: assigning non-escaping parameter 'resultSelector' to an @escaping closure
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Zip+arity.swift:539:160: note: parameter 'resultSelector' is implicitly non-escaping
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Zip+arity.swift:611:26: error: missing argument label 'lastMessage:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Zip+arity.swift:626:112: error: missing argument label 'element:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Zip+arity.swift:627:112: error: missing argument label 'element:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Zip+arity.swift:628:112: error: missing argument label 'element:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Zip+arity.swift:629:112: error: missing argument label 'element:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Zip+arity.swift:630:112: error: missing argument label 'element:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Zip+arity.swift:631:112: error: missing argument label 'element:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Zip+arity.swift:632:112: error: missing argument label 'element:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Zip+arity.swift:680:27: error: assigning non-escaping parameter 'resultSelector' to an @escaping closure
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Zip+arity.swift:671:185: note: parameter 'resultSelector' is implicitly non-escaping
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Zip+arity.swift:746:26: error: missing argument label 'lastMessage:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Zip+arity.swift:762:112: error: missing argument label 'element:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Zip+arity.swift:763:112: error: missing argument label 'element:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Zip+arity.swift:764:112: error: missing argument label 'element:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Zip+arity.swift:765:112: error: missing argument label 'element:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Zip+arity.swift:766:112: error: missing argument label 'element:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Zip+arity.swift:767:112: error: missing argument label 'element:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Zip+arity.swift:768:112: error: missing argument label 'element:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Zip+arity.swift:769:112: error: missing argument label 'element:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Zip+arity.swift:821:27: error: assigning non-escaping parameter 'resultSelector' to an @escaping closure
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Zip+arity.swift:811:210: note: parameter 'resultSelector' is implicitly non-escaping
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Zip.swift:14:22: error: 'ErrorType' has been renamed to 'Error'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Zip+CollectionType.swift:14:33: error: 'Generator' is not a member type of 'C'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Zip+CollectionType.swift:120:35: error: 'Generator' is not a member type of 'C'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Zip+CollectionType.swift:30:47: error: argument 'repeatedValue' must precede argument 'count'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Zip+CollectionType.swift:54:40: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Zip+CollectionType.swift:78:36: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Zip+CollectionType.swift:94:36: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Zip+CollectionType.swift:106:26: error: value of type 'C' has no member 'startIndex'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Zip.swift:81:22: error: 'ErrorType' has been renamed to 'Error'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Zip.swift:29:40: error: argument 'repeatedValue' must precede argument 'count'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Zip.swift:47:29: error: missing argument label 'index:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Zip.swift:56:32: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Zip.swift:59:32: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Zip.swift:75:27: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Zip.swift:99:23: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Zip.swift:126:25: error: assigning non-escaping parameter 'setNextValue' to an @escaping closure
    - NOTE  | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Zip.swift:121:70: note: parameter 'setNextValue' is implicitly non-escaping
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Zip.swift:130:24: error: missing argument label 'event:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Zip.swift:138:19: error: enum case 'Error' not found in type 'Event<ElementType>'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Zip.swift:149:29: error: missing argument label 'index:' in call
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Zip.swift:150:19: error: enum case 'Error' not found in type 'Event<ElementType>'
    - ERROR | [OSX] xcodebuild:  RxSwift/RxSwift/Observables/Implementations/Zip.swift:153:29: error: missing argument label 'index:' in call

[!] The spec did not pass validation, due to 908 errors.
[!] The validator for Swift projects uses Swift 3.0 by default, if you are using a different version of swift you can use a `.swift-version` file to set the version for your Pod. For example to use Swift 2.3, run:
    `echo "2.3" > .swift-version`.
Rafael-Ferreira:NSObject-Rx rafaelferreira$

Swift 3 2.0.0 CocoaPods release?

Hey guys!

It seems like Swift 3 compatible version of the framework has been already completed, and even podspec is updated, however there is no release on CocoaPods, are you planning to ship 2.0.0?

rx.disposeBag may be using wrong address

I think rx.disposeBag is doing some wrong memory stuff. Take a look at this post. I'm investigating now but might be helpful if you take a look as well.

ReactiveX/RxSwift#1439

Check kzaher comment:

Usually what happens is that somebody is using objc_getAssociatedObject and objc_setAssociatedObject inside rx extension in this form objc_getAssociatedObject(self, ... vs the correct objc_getAssociatedObject(base, ....

Because Swift has struct reusing, those two facts combined usually results in that kind of behavior.

How to deinit UIViewController when using rx_disposeBag

I have demo project with viewcontroller code here. When I click back barButtonItem but deinit not call. How to deinit UIViewController when using rx_disposeBag?

class ViewController: BaseViewController {
@IBOutlet weak var backButton: UIBarButtonItem!
override func viewDidLoad() {
super.viewDidLoad()

    // Do any additional setup after loading the view.
    self.setupRxButton()
}

deinit {
    print("ViewController deinit")
}

override func didReceiveMemoryWarning() {
    super.didReceiveMemoryWarning()
    // Dispose of any resources that can be recreated.
}

func setupRxButton() {
    self.backButton
        .rx_tap
        .subscribeNext {
            self.navigationController?.popViewControllerAnimated(true)
        }.addDisposableTo(rx_disposeBag)
}

}

Issue when uploading to iTunes Connect

ERROR ITMS-90205: "Invalid Bundle. The bundle at '../Frameworks/NSObject_Rx.framework' contains disallowed nested bundles."

Using Carthage.

If I remove NSObject_Rx.framework from copy-frameworks script it works fine on Debug schema, but not on Release.

Support Carthage

Alas, you cannot do a pod lib createfor this (cause it has dependencies that people will want separately), gonna have to do it the hard way with aCartfile`, blah blah.

Carthage issue

Well, simply:

*** Skipped building NSObject-Rx due to the error:
Dependency "NSObject-Rx" has no shared framework schemes for any of the platforms: iOS

Update podspec

I created a new tag for Carthage. Please update the podspec as well.

Does not build with Carthage and Xcode8 GM

github "RxSwiftCommunity/NSObject-Rx" "master"

gives

*** Building scheme "NSObject_Rx" in CarthageSupport.xcodeproj
** CLEAN FAILED **


The following build commands failed:
  Check dependencies
(1 failure)
** BUILD FAILED **


The following build commands failed:
  Check dependencies
(1 failure)
A shell task (/usr/bin/xcrun xcodebuild -project /path/to/project/Carthage/Checkouts/NSObject-Rx/CarthageSupport.xcodeproj -scheme NSObject_Rx -configuration Release -sdk iphoneos ONLY_ACTIVE_ARCH=NO BITCODE_GENERATION_MODE=bitcode CODE_SIGNING_REQUIRED=NO CODE_SIGN_IDENTITY= CARTHAGE=YES clean build) failed with exit code 65:
** CLEAN FAILED **


The following build commands failed:
  Check dependencies
(1 failure)
** BUILD FAILED **


The following build commands failed:
  Check dependencies
(1 failure)

Release new version

NSObject+RX v5.2.0 is NOT compatible with RxSwift v6.1.0 due to ~> 6.0.0 dependency version. There is a commit that fixes it, but new version haven't been released yet. Can you please release a new one?

Can't compile with Cocopods and Xcode 12


> Copying Moya-umbrella.h

[x] /Users/alouanemed/Projects/a-iOS/Pods/_Prebuild/Moya/Sources/RxMoya/MoyaProvider+Rx.swift:2:8: compiling for iOS 10.0, but module 'RxSwift' has a minimum deployment target of iOS 12.0: /Users/alouanemed/Projects/a-iOS/Pods/build/Release-iphoneos/RxSwift/RxSwift.framework/Modules/RxSwift.swiftmodule/arm64-apple-ios.swiftmodule

import RxSwift
       ^


> Linking Alamofire
> Linking Alamofire

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.