mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
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
11 lines
238 B
Plaintext
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
|