mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
9 lines
109 B
C
9 lines
109 B
C
// https://issues.dlang.org/show_bug.cgi?id=22933
|
|
|
|
void fn()
|
|
{
|
|
goto L;
|
|
int x = 1;
|
|
L:
|
|
return;
|
|
}
|