view test/typeinfo3.d @ 56:3a784f7790d6 trunk

[svn r60] fixed vararg1 test
author lindquist
date Wed, 24 Oct 2007 22:26:37 +0200
parents 28e99b04a132
children 2b5a2eaa88be
line wrap: on
line source

module typeinfo3;

typedef int int_t;

void main()
{
    int_t i;
    auto ti = typeid(typeof(i));
    printf("%s\n",ti.toString.ptr);
    assert(ti.toString() == "typeinfo3.int_t");
    assert(ti.next !is null);
    assert(ti.next.toString() == "int");
}