aboutsummaryrefslogtreecommitdiffstats
path: root/test/main.cpp
blob: 815a48d8f6a723a7b900180f6c13e0062bc87daf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
class myClass {
  public:
    myClass();
    ~myClass();

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

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

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;
}