view test/typeinfo9.d @ 269:967178e31a13 trunk

[svn r290] Forgot to remove a #define in mem.c
author lindquist
date Sun, 15 Jun 2008 18:57:11 +0200
parents 2b5a2eaa88be
children
line wrap: on
line source

module typeinfo9;

typedef int int_t = 42;

void main()
{
    auto i = typeid(int_t).init;
    assert(i.length == int_t.sizeof);
    assert(*cast(int_t*)i.ptr == 42);
}