Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[SR-13569] Moving class to a separate swift file causing unrecognized implicit conformance of nested type #56007

Open
swift-ci opened this issue Sep 18, 2020 · 1 comment
Labels
bug A deviation from expected or documented behavior. Also: expected but undesirable behavior. compiler The Swift compiler in itself

Comments

@swift-ci
Copy link
Collaborator

Previous ID SR-13569
Radar rdar://problem/69235381
Original Reporter kwojcik (JIRA User)
Type Bug
Environment

Swift 5.2

Xcode 11.7

Additional Detail from JIRA
Votes 0
Component/s Compiler
Labels Bug
Assignee None
Priority Medium

md5: a35d22d2960074f45965050700710a00

Issue Description:

protocol FirstProtocol {
    associatedtype Associatedtype

    var firstVar: Associatedtype? { get }
}

protocol SecondProtocol: FirstProtocol where Associatedtype == ThirdProtocol { }
protocol ThirdProtocol: class { }

// ----
final class FirstClass: SecondProtocol {

    weak var firstVar: ThirdProtocol?
}
// ----

final class ThirdClass {
    func firstFunc() {
        let firstClass = FirstClass()
        firstClass.firstVar = self
    }
}

extension ThirdClass: FirstClass.Associatedtype { }

Moving away that marked class from example (FirstClass) to a separate file causing compiler to not recognise that conformance took place (on ThirdClass extension). Autocompletion is also showing that type underneath (FirstClass.Associatedtype) is the same as before (ThirdProtocol).

More descriptive: https://forums.swift.org/t/protocol-assosiatedtype-conformance-confussion/40125

@typesanitizer
Copy link

@swift-ci create

@swift-ci swift-ci transferred this issue from apple/swift-issues Apr 25, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug A deviation from expected or documented behavior. Also: expected but undesirable behavior. compiler The Swift compiler in itself
Projects
None yet
Development

No branches or pull requests

2 participants