view tests/mini/const1.d @ 883:b52d5de7783f

GC defines and linkage changes.
author Christian Kamm <kamm incasoftware de>
date Thu, 08 Jan 2009 18:20:02 +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);
}