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
md5: 45637aa4240ad1b88bdac3d67539c4b1
Issue Description:
I would expect the following code to compile and to define a secondUppercased property on all Tuple where the U type is a String.
secondUppercased
Tuple
U
String
struct Tuple<T, U> { let first: T let second: U } extension Tuple where U == String { var secondLowercased: String { second.lowercased() } } typealias TupleString<T> = Tuple<T, String> extension TupleString { var secondUppercased: String { second.uppercased() } }
The text was updated successfully, but these errors were encountered:
@swift-ci create
Sorry, something went wrong.
No branches or pull requests
Additional Detail from JIRA
md5: 45637aa4240ad1b88bdac3d67539c4b1
Issue Description:
I would expect the following code to compile and to define a
secondUppercased
property on allTuple
where theU
type is aString
.The text was updated successfully, but these errors were encountered: