// { dg-do assemble } // { dg-xfail-if "" { i386-pc-solaris* } { "*" } { "" } } // Copyright (C) 1999 Free Software Foundation // by Alexandre Oliva // based on bug report by Andreas Stolcke // Fails with dwarf debugging. template struct foo { int data[1]; }; template struct bar { bar(foo<> *); }; template bar::bar(foo<> *x) { *x; } void baz() { foo<> *baz; bar<> baar(baz); }