view test/typeinfo2.d @ 128:e5fe8521bbfa trunk

[svn r132] Added some tests. some will fail at the moment.
author lindquist
date Fri, 30 Nov 2007 17:12:08 +0100
parents 06ccc817acd4
children
line wrap: on
line source

module typeinfo2;

void main()
{
    auto ti = typeid(float);
    float f = 2.5;
    hash_t fh = ti.getHash(&f);
    assert(ti.next is null);
    float g = 4.0;
    ti.swap(&f,&g);
    assert(f == 4.0 && g == 2.5);
    assert(fh == *cast(uint*)(&g));
    assert(!ti.flags);
}