mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
Previously debug info made not difference between an existential type and a protocol type. This caused us to loose typealiases such as typealias Alias = ProtocolType in the debug info. rdar://161134092
3 lines
92 B
Swift
3 lines
92 B
Swift
public protocol ProtocolFromModule {}
|
|
public typealias AliasFromModule = ProtocolFromModule
|