mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-12 10:53:14 +01:00
12 lines
119 B
D
12 lines
119 B
D
module bug45;
|
|
|
|
void foo() {
|
|
int bar;
|
|
scope(exit) { bar++; }
|
|
if (bar) return;
|
|
}
|
|
|
|
void main() {
|
|
foo();
|
|
}
|