Files
swift-mirror/test/Interop/Cxx/extern-c/Inputs/inline-func.h
2024-08-28 09:41:09 -07:00

19 lines
199 B
C

extern "C" {
inline void inlineFn();
void cacheMiss() { }
void incorrectCacheHit() {
inlineFn();
}
static void caller() {
cacheMiss();
incorrectCacheHit();
}
inline void inlineFn() { }
}