view test/typeinfo11.d @ 134:0dec7b3727ea trunk

[svn r138] forgot the latest tests
author lindquist
date Mon, 14 Jan 2008 05:32:24 +0100
parents 182b41f56b7f
children
line wrap: on
line source

module typeinfo11;

void main()
{
    int[4] a;
    TypeInfo ti;
    ti = typeid(typeof(a));
    assert(ti.next() is typeid(int));
    assert(ti.tsize() == 16);
}