view test/typeinfo3.d @ 104:4d1e9eb001e0 trunk

[svn r108] Now basic suppport for complex types. =,+,-,*,/ are supported.
author lindquist
date Mon, 19 Nov 2007 02:58:58 +0100
parents 5071469303d4
children
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);*/
}