view tests/mini/bug52.d @ 1517:a7a9e461512a

Make debug info work with newer LLVM.
author Christian Kamm <kamm incasoftware de>
date Fri, 26 Jun 2009 21:00:12 +0200
parents 1bb99290e03a
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() {}