view tests/mini/nested1.d @ 960:0b38b64f62c7

Add OSX version declaration for Mac OS X to improve dmd-mac compatibility.
author Christian Kamm <kamm incasoftware de>
date Sun, 15 Feb 2009 21:44:03 +0100
parents 1bb99290e03a
children
line wrap: on
line source

module nested1;

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

void main()
{
    func(3);
}