Files
swift-mirror/test/IDE/Inputs/mock-sdk/OverlayTest.framework/Headers/Overlayed.h
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

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