123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- // Just produce any code in order to test basic workflow
- namespace hmm
- {
- class A
- {
- A()
- {
- /* first funtion */
- this->m_member = 10;
- if (a & b)
- {
- for (int i = 0; i < 0 && i > 0; i++)
- {
- // crazy, right?
- }
- }
- }
- int func(int param = 5)
- {
- class embeded
- {
- embeded()
- {
- int a = 10;
- if (true)
- {
- // again crazy
- }
- }
- };
- if (a);
- }
- int never(int how_long = 999)
- {
- while(true)
- {
- }
- return 1;
- }
- int m_member = 10;
- };
- }
|