We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Summary: So, y’all use recursion too!
Steps to Reproduce: This code: protocol A { typealias O : B } protocol B { typealias O : A }
Expected Results: should not crash swiftc
Actual Results: but totally does: 510 swift 0x0000000103a1c8bf swift::ArchetypeBuilder::addConformanceRequirement(swift::ArchetypeBuilder::PotentialArchetype_, swift::ProtocolDecl_, swift::RequirementSource) + 655 511 swift 0x0000000103a1c8bf swift::ArchetypeBuilder::addConformanceRequirement(swift::ArchetypeBuilder::PotentialArchetype_, swift::ProtocolDecl_, swift::RequirementSource) + 655
Regression: N/A
Notes: N/A
Product Version: Xcode-beta (7A165t) Created: 2015-07-30 01:52:25.289300 Originated: 2015-07-29T21:52:00 Open Radar Link: http://www.openradar.me/22064783
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description
Summary:
So, y’all use recursion too!
Steps to Reproduce:
This code:
protocol A {
typealias O : B
}
protocol B {
typealias O : A
}
Expected Results:
should not crash swiftc
Actual Results:
but totally does:
510 swift 0x0000000103a1c8bf swift::ArchetypeBuilder::addConformanceRequirement(swift::ArchetypeBuilder::PotentialArchetype_, swift::ProtocolDecl_, swift::RequirementSource) + 655
511 swift 0x0000000103a1c8bf swift::ArchetypeBuilder::addConformanceRequirement(swift::ArchetypeBuilder::PotentialArchetype_, swift::ProtocolDecl_, swift::RequirementSource) + 655
Regression:
N/A
Notes:
N/A
Product Version: Xcode-beta (7A165t)
Created: 2015-07-30 01:52:25.289300
Originated: 2015-07-29T21:52:00
Open Radar Link: http://www.openradar.me/22064783
The text was updated successfully, but these errors were encountered: