mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
* Add a test that verifies that Swift correctly recognizes symbol visibility when dealing with @_implementationOnly imports * Fix header guards
9 lines
250 B
C
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
|