mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
These also create a dependency on the implementation module, even if both the type and the protocol are public. As John puts it, a conformance is basically a declaration that we name as part of another declaration. More rdar://problem/48991061
7 lines
145 B
Swift
7 lines
145 B
Swift
public struct NormalStruct {}
|
|
public struct GenericStruct<T> {}
|
|
public protocol NormalProto {
|
|
associatedtype Assoc
|
|
}
|
|
open class NormalClass {}
|