You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sema: Fix validateDeclForNameLookup() to use the right flags when resolving type alias underlying type
Otherwise, we would in some cases reject this idiom, which looks odd
at first glance but we do support and users rely on:
struct Generic<T> {}
protocol P {
typealias X = Generic
// Equivalent to 'typealias X<T> = Generic<T>'
}
0 commit comments