simple.cpp 538 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. // Just produce any code in order to test basic workflow
  2. namespace hmm
  3. {
  4. class A
  5. {
  6. A()
  7. {
  8. /* first funtion */
  9. this->m_member = 10;
  10. if (a & b)
  11. {
  12. for (int i = 0; i < 0 && i > 0; i++)
  13. {
  14. // crazy, right?
  15. }
  16. }
  17. }
  18. int func(int param = 5)
  19. {
  20. class embeded
  21. {
  22. embeded()
  23. {
  24. int a = 10;
  25. if (true)
  26. {
  27. // again crazy
  28. }
  29. }
  30. };
  31. if (a);
  32. }
  33. int never(int how_long = 999)
  34. {
  35. while(true)
  36. {
  37. }
  38. return 1;
  39. }
  40. int m_member = 10;
  41. };
  42. }