forked from qt-creator/qt-creator
9 lines
85 B
C++
9 lines
85 B
C++
|
|
void foo() { }
|
||
|
|
|
||
|
|
int main()
|
||
|
|
{
|
||
|
|
void (*fooPtr)() = 0;
|
||
|
|
fooPtr();
|
||
|
|
return 0;
|
||
|
|
}
|