summaryrefslogtreecommitdiff
path: root/tests/system/suite_editors/shared/simplePlainCPP/testfile.cpp
blob: cffb1a78478eba78fcab8f60ae84398f0b3beb40 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include "testfile.h"

class SomeClass
{
public:
    SomeClass() {}
    void function1(int a);
};

bool function1(int a) {
  SOME_MACRO_NAME(a)
  return a;
}