Files
swift-mirror/test/Interop/C/implementation-only-imports/Inputs/helper.h
scentini 64e5f763e6 Add a failing test for SR-13785 (#34462)
* Add a test that verifies that Swift correctly recognizes symbol visibility when dealing with @_implementationOnly imports

* Fix header guards
2020-10-28 14:36:27 +01:00

9 lines
250 B
C

#ifndef TEST_INTEROP_C_IMPLEMENTATION_ONLY_IMPORTS_INPUTS_HELPER_H
#define TEST_INTEROP_C_IMPLEMENTATION_ONLY_IMPORTS_INPUTS_HELPER_H
inline int getFortyTwo() {
return 42;
};
#endif // TEST_INTEROP_C_IMPLEMENTATION_ONLY_IMPORTS_INPUTS_HELPER_H