view tests/mini/delegate2.d @ 1034:12b423e17860

Adjust mini tests to use D_InlineAsm
author Christian Kamm <kamm incasoftware de>
date Tue, 03 Mar 2009 18:26:39 +0100
parents ce95d269bf5a
children
line wrap: on
line source

module mini.delegate2;

void main()
{
    int foo = 42;
    int bar()
    {
        return foo;
    }
    int delegate() dg = &bar;
    assert(dg() == foo);
}