view test/bug52.d @ 218:df641a27e9fd trunk

[svn r234] Fixed: missed a few bogus #ifs in last revision.
author lindquist
date Thu, 05 Jun 2008 06:43:34 +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() {}