forked from qt-creator/qt-creator
16 lines
158 B
C++
16 lines
158 B
C++
|
|
void function();
|
||
|
|
void function();
|
||
|
|
void function(int x);
|
||
|
|
void function()
|
||
|
|
{
|
||
|
|
int x;
|
||
|
|
x = 4;
|
||
|
|
int y = 4;
|
||
|
|
y = x + 3;
|
||
|
|
}
|
||
|
|
|
||
|
|
void f()
|
||
|
|
{
|
||
|
|
function();
|
||
|
|
}
|