mirror of
https://github.com/opnsense/src.git
synced 2026-02-27 20:01:13 -05:00
15 lines
174 B
C++
15 lines
174 B
C++
#include "macro1.h"
|
|
|
|
#define MACRO_1 100
|
|
#define MACRO_2 200
|
|
|
|
int
|
|
main ()
|
|
{
|
|
int a = ONE + TWO; // Break here
|
|
|
|
#undef MACRO_2
|
|
#undef FOUR
|
|
|
|
return Simple().Method();
|
|
}
|