Files
swift-mirror/test/Constraints/sr13951.swift
Pavel Yaskevich 26415547e0 [Diagnostics] Attempt .rawValue fix only if both types are equally optional
This is a follow-up to https://github.com/apple/swift/pull/35072.

Let's wait until both sides are equally optional before attempting
`.rawValue` fix, otherwise there is a risk that a valid code would
get diagnosed.

Extend test coverage of possible `.rawValue` situations to
contextual and argument positions to make sure that valid
code is accepted.

Resolves: SR-13951
2021-01-07 09:02:20 -08:00

46 lines
935 B
Swift

// RUN: %target-typecheck-verify-swift
protocol TheProtocol {}
struct TheType1: TheProtocol {}
enum TheEnum: RawRepresentable {
typealias RawValue = TheProtocol
case case1
case case2
init?(rawValue: TheProtocol) {
self = .case1
}
var rawValue: TheProtocol {
return TheType1()
}
}
func aTransformer(input: Int) -> TheEnum {
if input % 2 == 0 {
return .case1
} else {
return .case2
}
}
func theProblem(input: Int?) {
var enumValue: TheEnum?
func test_arg_position(_: TheEnum?) {}
if let input = input {
enumValue = aTransformer(input: input) // Ok
let _: TheEnum? = enumValue // Ok
let _: TheEnum? = aTransformer(input: input) // Ok
let _: TheEnum?? = enumValue // Ok
let _: TheEnum?? = aTransformer(input: input) // Ok
test_arg_position(aTransformer(input: input)) // Ok
test_arg_position(enumValue) // Ok
}
_ = enumValue // To silence the warning
}