mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-01-30 12:44:10 +08:00
13 lines
76 B
C
13 lines
76 B
C
void x()
|
|
{
|
|
void (*fp)() = 0;
|
|
fp();
|
|
}
|
|
|
|
int
|
|
main()
|
|
{
|
|
x();
|
|
return 0;
|
|
}
|