Files
ldc/tests/mini/bug52.d

6 lines
131 B
D

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