test.cpp 324 B

1234567891011121314151617181920212223242526272829303132333435
  1. const unsigned int c = 3;
  2. unsigned int c = 3;
  3. int c = 3;
  4. int main(int a = 1, int b = -2)
  5. {
  6. const unsigned int c = 3;
  7. for (int i = 0; i < 100; ++i)
  8. {
  9. // modified
  10. }
  11. while (1)
  12. {
  13. a = 4;
  14. }
  15. }
  16. int simple_func()
  17. {
  18. const unsigned int c = c;
  19. }
  20. int added()
  21. {
  22. }
  23. int added2()
  24. {
  25. }