view tests/mini/sync2.d @ 927:97688ff7cf93

Added X86-64 versioning
author wilsonk@ubuntu
date Tue, 03 Feb 2009 12:34:12 -0700
parents 15eb8f5f2441
children
line wrap: on
line source

module tangotests.sync2;

class Lock
{
}

const Lock lock;

static this()
{
    lock = new Lock;
}

void main()
{
    size_t id;
    synchronized(lock) id = 2;
}