Files
swift-mirror/test/IDE/Inputs/mock-sdk/OverlayTest.swiftinterface
Rintaro Ishizaki af27e8f183 [CodeCompletion] Avoid suggesting duplicated module names
in global completion result. Overly modules have the same name as the
shadowed modules. We should not list both names because they are
identical.

Maintain a set of seen module names to avoid suggesting duplicated
names.

rdar://problem/63370253
2020-05-19 15:18:34 -07:00

11 lines
238 B
Plaintext

// swift-interface-format-version: 1.0
// swift-module-flags: -module-name OverlayTest
@_exported import OverlayTest
public extension Overlayed {
public func inOverlayFunc() {}
}
public func createOverlayedInOverlay() -> Overlayed