aboutsummaryrefslogblamecommitdiffstats
path: root/test/main.cpp
blob: 5c2ceb816f6f3df635b0eede4bbc8ef687076ab1 (plain) (tree)
1
2
3
4
5


               

                        












                           




               












                                  
class myClass {
  public:
    myClass() = default;
    ~myClass() {}

    void myMehtod1(void) {}
    void myMehtod2(void) {}
  private:
    int a;
    float b;
};

struct myStruct {
  myStruct();
  ~myStruct();
};

union myUnion {
  int a;
  double b;
};

void myFunc1(void) {}
void myFunc2(void) {}

int main (int argc, char** argv) {
  myClass mc;
  mc.myMehtod1();
  mc.myMehtod2();
  int a;
  float b;
  int c,d;
  a = c+d;
  return 0;
}