view test/typeinfo3.d @ 75:ab8f5ec40a14 trunk

[svn r79] Updated the rebuild profile to link bitcode libraries with -lib
author lindquist
date Wed, 31 Oct 2007 04:55:48 +0100
parents 2b5a2eaa88be
children 5071469303d4
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");
    assert(ti.init is null);
}