view tests/mini/typeinfo6.d @ 927:97688ff7cf93

Added X86-64 versioning
author wilsonk@ubuntu
date Tue, 03 Feb 2009 12:34:12 -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));
}