Files
ldc/tests/mini/sync2.d
2008-07-13 03:02:15 +02:00

19 lines
162 B
D

module tangotests.sync2;
class Lock
{
}
const Lock lock;
static this()
{
lock = new Lock;
}
void main()
{
size_t id;
synchronized(lock) id = 2;
}