aboutsummaryrefslogtreecommitdiff
path: root/packages/Python/lldbsuite/test/expression_command/macros/main.cpp
blob: f2c2c101fa15b3cb3a1a6780c2ddd2b222e616f1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#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();
}