mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
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.
9 lines
256 B
C
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);
|
|
|