view test/typeinfo2.d @ 303:4aa2b6753059 trunk

[svn r324] Small indentation fixes. Added end of line to complex.cpp.
author ChristianK
date Wed, 25 Jun 2008 20:42:30 +0200
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);
}