11 lines
127 B
C
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;
|
|
}
|