view tests/mini/nested1.d @ 985:bce024c60adc

Clean up regexes in .hgignore, making it more strict.
author Frits van Bommel <fvbommel wxs.nl>
date Thu, 19 Feb 2009 13:51:44 +0100
parents 1bb99290e03a
children
line wrap: on
line source

module nested1;

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

void main()
{
    func(3);
}