forked from qt-creator/qt-creator
Change-Id: Id1a123f745a0f092aeff9589aa146feb49d31661 Reviewed-by: Ivan Donchevskii <ivan.donchevskii@qt.io>
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();
|
|
}
|