view tests/mini/typeinfo6.d @ 782:29f0e5847123

Don't use StdCall on Windows.
author Christian Kamm <kamm incasoftware de>
date Sat, 22 Nov 2008 21:08:00 +0100
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));
}