view tests/mini/bug75.d @ 423:3424f0fab7a9

Error instead of assert on unimplemented interface functions.
author Christian Kamm <kamm incasoftware de>
date Tue, 29 Jul 2008 10:55:58 +0200
parents 1bb99290e03a
children
line wrap: on
line source

module bug75;

void func(void delegate() dg)
{
}

void main()
{
    void nested() {
    }
    //func(&nested);
    void delegate() dg = &nested;
}