view tests/mini/typeinfo8.d @ 968:a9feaed801d7

Fix {,w,d}char handling in tests/mini/vararg6.d:print()
author Frits van Bommel <fvbommel wxs.nl>
date Mon, 16 Feb 2009 19:31:10 +0100
parents 1bb99290e03a
children
line wrap: on
line source

module typeinfo8;
extern(C) int printf(char*, ...);
struct S
{
    void func()
    {
    }
}

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