view test/typeinfo7.d @ 313:a498b736a0bd trunk

[svn r334] Produce an error for zero-size types instead of segfaulting.
author ChristianK
date Sun, 29 Jun 2008 22:22:37 +0200
parents d9d5d59873d8
children
line wrap: on
line source

module typeinfo7;
extern(C) int printf(char*, ...);
int func(long)
{
    return 0;
}

void main()
{
    auto ti = typeid(typeof(func));
    auto s = ti.toString;
    printf("%.*s\n", s.length, s.ptr);
    assert(s == "int()");
}