view tests/mini/const1.d @ 927:97688ff7cf93

Added X86-64 versioning
author wilsonk@ubuntu
date Tue, 03 Feb 2009 12:34:12 -0700
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);
}