Files
swift-mirror/test/Interop/Cxx/static/Inputs/static-local-var.h
2020-04-30 16:13:33 +02:00

12 lines
207 B
C

#ifndef TEST_INTEROP_CXX_STATIC_INPUTS_STATIC_LOCAL_VAR_H
#define TEST_INTEROP_CXX_STATIC_INPUTS_STATIC_LOCAL_VAR_H
int counterWrapper();
inline int counter() {
static int a = 0;
return a++;
}
#endif