aboutsummaryrefslogblamecommitdiffstats
path: root/test/function.cpp
blob: bb0f22879818b8379d40d563094d16eea47d5862 (plain) (tree)
1
2
3
4
5
6
7
8
9
10

                      
                                 






                       
                                     






                         
                               
              
namespace function_ns{
void testMyFunc(void) { return; }

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

  void testyolofunc(void) { return; }

private:
  int a;
};

#define MFunc macroedFunc

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