mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-12 19:03:13 +01:00
6 lines
131 B
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() {}
|