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
14 lines
292 B
C
14 lines
292 B
C
|
|
#ifndef OVERLAYED_H
|
|
#define OVERLAYED_H
|
|
|
|
struct __attribute__((swift_name("Overlayed"))) OVOverlayed {
|
|
double x, y, z;
|
|
};
|
|
|
|
double OVOverlayedInOriginalFunc(struct OVOverlayed s) __attribute__((swift_name("Overlayed.inOriginalFunc(self:)")));
|
|
|
|
struct OVOverlayed createOverlayed();
|
|
|
|
#endif
|