view tests/mini/nested1.d @ 799:9f92b6e40fd3

Do put zero in vtable initializer for function without body in abstract class.
author Christian Kamm <kamm incasoftware de>
date Sat, 29 Nov 2008 17:13:38 +0100
parents 1bb99290e03a
children
line wrap: on
line source

module nested1;

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

void main()
{
    func(3);
}