view tests/mini/sync2.d @ 903:493d42562733

Further Solaris data segment detection fixes. Thanks BlueZeniX!
author Christian Kamm <kamm incasoftware de>
date Fri, 23 Jan 2009 10:13:27 +0100
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;
}