Files
swift-mirror/test/SymbolGraph/Relationships/ConformsTo/Inputs/ExternalIndirect.swift
Max Obermeier 8c6fe1cca4 fix #61531 swift-symbolgraph-extract crashes when trying to emit the 'Swift' module (#62825)
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
2023-01-06 09:06:17 -07:00

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 { }