mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-12 10:53:14 +01:00
9 lines
77 B
D
9 lines
77 B
D
module sync1;
|
|
|
|
void main()
|
|
{
|
|
int i;
|
|
int j;
|
|
synchronized j = i;
|
|
}
|