dmd/compiler/test/compilable/test22933.c
2022-07-09 18:53:07 +02:00

9 lines
109 B
C

// https://issues.dlang.org/show_bug.cgi?id=22933
void fn()
{
goto L;
int x = 1;
L:
return;
}