header.h 127 B

12345678910
  1. // Generate a warning in here
  2. int function_that_generates_warning(int x)
  3. {
  4. int y = x;
  5. int z = 2;
  6. y -= x;
  7. return y;
  8. }