view tests/mini/nested1.d @ 1437:efa34a3bb8fc

Fix test for mingw
author Kelly Wilson <wilsonk cpsc.ucalgary.ca>
date Sat, 30 May 2009 14:57:48 -0600
parents 1bb99290e03a
children
line wrap: on
line source

module nested1;

void func(int i)
{
    (){
        assert(i == 3);
    }();
}

void main()
{
    func(3);
}