mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
20 lines
375 B
C
20 lines
375 B
C
#ifndef TEST_INTEROP_C_MACROS_INPUTS_REDEFINED_MACRO_H
|
|
#define TEST_INTEROP_C_MACROS_INPUTS_REDEFINED_MACRO_H
|
|
|
|
#define FOO 0
|
|
#define TMP_FOO FOO
|
|
#undef FOO
|
|
#define FOO TMP_FOO
|
|
|
|
#define ONE TWO
|
|
#define TWO THREE
|
|
#define THREE ONE
|
|
|
|
#define THE_MAX THREE
|
|
#undef THREE
|
|
#define THREE THE_MAX
|
|
|
|
#define BAR 0
|
|
#define BAZ BAR
|
|
#endif // TEST_INTEROP_C_MACROS_INPUTS_REDEFINED_MACRO_H
|