2021-09-14 00:13:48 +02:00

11 lines
127 B
C

// Generate a warning in here
int function_that_generates_warning(int x)
{
int y = x;
int z = 2;
y -= x;
return y;
}