view test/bug52.d @ 287:00eb2c967c3a trunk

[svn r308] Really fixed multidimensional new expressions. the first length was bad in the resulting slice.
author lindquist
date Sat, 21 Jun 2008 05:03:42 +0200
parents ccca1c13e13a
children
line wrap: on
line source

module bug52;
struct Vec { double x,y,z; }
struct Pair(T, U) { T first; U second; }
typedef Pair!(double, Vec) Hit;
void main() {}