view tests/mini/bug40.d @ 995:125c09006ac6

Fix some -vv output
author Frits van Bommel <fvbommel wxs.nl>
date Thu, 26 Feb 2009 14:51:05 +0100
parents 1bb99290e03a
children
line wrap: on
line source

module bug40;

char[] func(void* p)
{
    return null;
}

void main()
{
    char[] function(void*) fp = &func;
    assert(fp(null) is null);
}