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