aboutsummaryrefslogtreecommitdiffstats
path: root/test/function.cpp
blob: 83878e7d74285102de19aa2671e0c13b7878a1b7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
namespace function_ns{
void MyFunc(void) { return; }

class yolo {
public:
  yolo() = default;
  yolo(int a) : a(a) {}
  virtual ~yolo();

  void yolofunc(void) { return; }

private:
  int a;
};

#define MFunc macroedFunc

void MFunc(void) { return; }
} // namespace