mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
21 lines
229 B
C++
21 lines
229 B
C++
|
static void MUST_FLOW_THROUGH(const char *label) {
|
||
|
}
|
||
|
|
||
|
int test(int x, int y) {
|
||
|
if (x == 3)
|
||
|
return 0;
|
||
|
|
||
|
if(x)
|
||
|
MUST_FLOW_THROUGH("out");
|
||
|
|
||
|
if (x) {
|
||
|
x = y;
|
||
|
goto out;
|
||
|
}
|
||
|
|
||
|
return y;
|
||
|
out:
|
||
|
x--;
|
||
|
return x;
|
||
|
}
|