Files
swift-mirror/test/Serialization/Inputs/conformance-multi-file-other.swift
Jordan Rose e9074c4cb8 [serialization] Use cross-references for cross-file conformance references.
...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
2015-04-01 21:18:44 +00:00

12 lines
146 B
Swift

public class Base {
public init() {}
}
public protocol BaseProto {
func method()
}
extension Base : BaseProto {
public func method() {}
}