mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-12 19:03:13 +01:00
18 lines
180 B
D
18 lines
180 B
D
module tangotests.sync3;
|
|
|
|
void main()
|
|
{
|
|
int i = foo();
|
|
}
|
|
|
|
int foo()
|
|
{
|
|
int res;
|
|
synchronized
|
|
{
|
|
scope(exit) res--;
|
|
res++;
|
|
return res;
|
|
}
|
|
}
|