view tests/mini/sync3.d @ 786:45d9c218fd32

Add missing CMakeList, apply conf changes to dmd2 frontend.
author Christian Kamm <kamm incasoftware de>
date Mon, 24 Nov 2008 20:02:59 +0100
parents 1bb99290e03a
children
line wrap: on
line source

module tangotests.sync3;

void main()
{
    int i = foo();
}

int foo()
{
    int res;
    synchronized
    {
        scope(exit) res--;
        res++;
        return res;
    }
}