mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-15 04:13:14 +01:00
12 lines
91 B
D
12 lines
91 B
D
module goto1;
|
|
|
|
void main()
|
|
{
|
|
int i;
|
|
goto lbl;
|
|
i++;
|
|
lbl:
|
|
assert(i == 0);
|
|
}
|
|
|