view tests/mini/typeinfo6.d @ 925:79e3d33e6d6e

Added X86-64 versioning
author wilsonk@ubuntu
date Tue, 03 Feb 2009 12:33:21 -0700
parents 1bb99290e03a
children
line wrap: on
line source

module typeinfo6;

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