mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
...rather than re-emitting the conformance in the current file, and then trying to cross-reference the decl context that owns the conformance, which may be an extension. rdar://problem/20383044 Swift SVN r26822
12 lines
146 B
Swift
12 lines
146 B
Swift
public class Base {
|
|
public init() {}
|
|
}
|
|
|
|
public protocol BaseProto {
|
|
func method()
|
|
}
|
|
|
|
extension Base : BaseProto {
|
|
public func method() {}
|
|
}
|