mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
We were hitting an unreachable in visitDynamicMemberExpr in ExprRewriter when re-typechecking during a salvage. Check for these earlier (in CSGen) and update SanitizeExpr to handle them. Resolves rdar://problem/39055736
18 lines
447 B
Swift
18 lines
447 B
Swift
// RUN: %target-swift-frontend(mock-sdk: %clang-importer-sdk) -typecheck %s -verify
|
|
// REQUIRES: objc_interop
|
|
|
|
import Foundation
|
|
|
|
@objc class Foo: NSObject {
|
|
let x: Int = 0
|
|
}
|
|
@objc protocol Bar {
|
|
@objc optional var foo: Foo {get}
|
|
}
|
|
|
|
func baz(bar: Bar) {
|
|
max(bar, bar.foo?.x ?? 0)
|
|
// expected-error@-1 {{cannot invoke 'max' with an argument list of type '(Bar, Int)'}}
|
|
// expected-note@-2 {{expected an argument list of type '(T, T)'}}
|
|
}
|