view test/typeinfo6.d @ 152:e984333d6ac6 trunk

[svn r158] fixed bug with console integer output: buffer was too small
author ChristianK
date Mon, 24 Mar 2008 20:49:21 +0100
parents 2c3cd3596187
children
line wrap: on
line source

module typeinfo6;

void main()
{
    auto ti = typeid(int[]);
    assert(ti.toString() == "int[]");
    assert(ti.next() is typeid(int));
}