Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 1 addition & 20 deletions lib/Sema/CSBindings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1646,26 +1646,6 @@ PotentialBindings::inferFromRelational(Constraint *constraint) {
/// those types should be opened.
void PotentialBindings::infer(Constraint *constraint) {
switch (constraint->getKind()) {
case ConstraintKind::OptionalObject: {
// Inference through optional object is allowed if
// one of the types is resolved or "optional" type variable
// cannot be bound to l-value, otherwise there is a
// risk of binding "optional" to an optional type (inferred from
// the "object") and discovering an l-value binding for it later.
auto optionalType = constraint->getFirstType();

if (auto *optionalVar = optionalType->getAs<TypeVariableType>()) {
if (optionalVar->getImpl().canBindToLValue()) {
auto objectType =
constraint->getSecondType()->lookThroughAllOptionalTypes();
if (objectType->isTypeVariableOrMember())
return;
}
}

LLVM_FALLTHROUGH;
}

case ConstraintKind::Bind:
case ConstraintKind::Equal:
case ConstraintKind::BindParam:
Expand All @@ -1675,6 +1655,7 @@ void PotentialBindings::infer(Constraint *constraint) {
case ConstraintKind::Conversion:
case ConstraintKind::ArgumentConversion:
case ConstraintKind::OperatorArgumentConversion:
case ConstraintKind::OptionalObject:
case ConstraintKind::UnresolvedMemberChainBase: {
auto binding = inferFromRelational(constraint);
if (!binding)
Expand Down
4 changes: 2 additions & 2 deletions lib/Sema/CSSimplify.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9179,8 +9179,8 @@ ConstraintSystem::simplifyOptionalObjectConstraint(
}

if (optTy->isPlaceholder()) {
// object type should be simplified because it could be already bound.
recordAnyTypeVarAsPotentialHole(simplifyType(second));
if (auto *typeVar = second->getAs<TypeVariableType>())
recordPotentialHole(typeVar);
return SolutionKind::Solved;
}

Expand Down
14 changes: 6 additions & 8 deletions test/Constraints/diagnostics.swift
Original file line number Diff line number Diff line change
Expand Up @@ -1121,11 +1121,9 @@ func rdar17170728() {
var j: Int?
var k: Int? = 2

let _ = [i, j, k].reduce(0 as Int?) { // expected-error {{missing argument label 'into:' in call}}
// expected-error@-1 {{cannot convert value of type 'Int?' to expected argument type '(inout @escaping (Bool, Bool) -> Bool?, Int?) throws -> ()'}}
let _ = [i, j, k].reduce(0 as Int?) {
$0 && $1 ? $0! + $1! : ($0 ? $0! : ($1 ? $1! : nil))
// expected-error@-1 {{binary operator '+' cannot be applied to two 'Bool' operands}}
// expected-error@-2 4 {{cannot force unwrap value of non-optional type 'Bool'}}
// expected-error@-1 4 {{optional type 'Int?' cannot be used as a boolean; test for '!= nil' instead}}
}

let _ = [i, j, k].reduce(0 as Int?) { // expected-error {{missing argument label 'into:' in call}}
Expand Down Expand Up @@ -1555,18 +1553,18 @@ func testNilCoalescingOperatorRemoveFix() {
let _ = "" /* This is a comment */ ?? "" // expected-warning {{left side of nil coalescing operator '??' has non-optional type 'String', so the right side is never used}} {{13-43=}}

let _ = "" // This is a comment
?? "" // expected-warning {{left side of nil coalescing operator '??' has non-optional type 'String', so the right side is never used}} {{1557:13-1558:10=}}
?? "" // expected-warning {{left side of nil coalescing operator '??' has non-optional type 'String', so the right side is never used}} {{1555:13-1556:10=}}

let _ = "" // This is a comment
/*
* The blank line below is part of the test case, do not delete it
*/

?? "" // expected-warning {{left side of nil coalescing operator '??' has non-optional type 'String', so the right side is never used}} {{1560:13-1565:10=}}
?? "" // expected-warning {{left side of nil coalescing operator '??' has non-optional type 'String', so the right side is never used}} {{1558:13-1563:10=}}

if ("" ?? // This is a comment // expected-warning {{left side of nil coalescing operator '??' has non-optional type 'String', so the right side is never used}} {{9-1568:9=}}
if ("" ?? // This is a comment // expected-warning {{left side of nil coalescing operator '??' has non-optional type 'String', so the right side is never used}} {{9-1566:9=}}
"").isEmpty {}

if ("" // This is a comment
?? "").isEmpty {} // expected-warning {{left side of nil coalescing operator '??' has non-optional type 'String', so the right side is never used}} {{1570:9-1571:12=}}
?? "").isEmpty {} // expected-warning {{left side of nil coalescing operator '??' has non-optional type 'String', so the right side is never used}} {{1568:9-1569:12=}}
}
16 changes: 0 additions & 16 deletions test/Constraints/optional.swift
Original file line number Diff line number Diff line change
Expand Up @@ -598,19 +598,3 @@ do {
test(x!) // expected-error {{no exact matches in call to local function 'test'}}
// expected-error@-1 {{cannot force unwrap value of non-optional type 'Double'}}
}

// Diagnose cases of invalid chaining when parameter is not optional based on context.
do {
class Test {
var value: Int = 42
}

class Container {
let test: Test = Test()

func loop() {
[test].forEach { $0?.value = 42 }
// expected-error@-1 {{cannot use optional chaining on non-optional value of type 'Test'}}
}
}
}
22 changes: 0 additions & 22 deletions test/stmt/switch_stmt2.swift
Original file line number Diff line number Diff line change
Expand Up @@ -150,25 +150,3 @@ func fallthrough_not_last(i: Int) {
break
}
}

// rdar://117871338 - incorrect diagnostic - type of expression is ambiguous when member is missing.
func test_invalid_optional_chaining() {
func test(_: (E) -> Void) {
}

enum E {
case a
case b
}

struct S {
var prop: E
}

test {
switch $0.prop? { // expected-error {{value of type 'E' has no member 'prop'}}
case .a: break
case .b: break
}
}
}