Files
swift-mirror/test/IDE/Inputs/custom-modules/CollisionImportAsMember.h
Michael Ilseman 9d76ce983e [Import as Member] Fix oversight where we skip getter validation.
In the code that makes sure to pair up getters/setters only from the
same top level module, we were accidentally skipping the final
validity checks (e.g. do the number of parameters line up). This fixes
that.
2016-06-30 18:34:29 -07:00

9 lines
256 B
C

// This is for exercising naming collisions with other modules
#include "InferImportAsMember.h"
extern double IAMStruct1GetNonPropertyExternalCollision(struct IAMStruct1 s);
extern void IAMStruct1SetCollisionNonProperty(struct IAMStruct1, int, float);