7 lines
72 B
C++
7 lines
72 B
C++
|
void f() {
|
||
|
void const *l1_ptr = &&l1;
|
||
|
goto *l1_ptr;
|
||
|
l1:
|
||
|
return;
|
||
|
}
|