view tests/mini/const1.d @ 1122:c614ef596a20

Fix imports copying for out-of-source build.
author Christian Kamm <kamm incasoftware de>
date Sun, 15 Mar 2009 23:04:58 +0100
parents 722630261d62
children
line wrap: on
line source

module mini.const1;

void* g = cast(void*)&foobar;

int foobar()
{
    return 42;
}

void main()
{
    auto fn = cast(int function())g;
    int i = fn();
    assert(i == 42);
}