mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
17 lines
191 B
C++
17 lines
191 B
C++
static void MUST_FLOW_THROUGH(const char *label) {
|
|
}
|
|
|
|
int test(int x, int y) {
|
|
MUST_FLOW_THROUGH("out");
|
|
|
|
if (!x) {
|
|
x = y;
|
|
goto out;
|
|
}
|
|
|
|
return y;
|
|
out:
|
|
x--;
|
|
return x;
|
|
}
|