mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
fix a crash in symbol graph generation caused by an empty SmallVector access while expanding protocol compositions during conformance expansion for extension block symbols rdar://103322385
13 lines
169 B
Swift
13 lines
169 B
Swift
public protocol EA {}
|
|
public protocol EB {}
|
|
|
|
public typealias EAB = EA & EB
|
|
|
|
public protocol EP : EAB {
|
|
func foo()
|
|
}
|
|
|
|
public protocol EQ : EP {}
|
|
|
|
public struct ES { }
|