// Build don't link: // Copyright (C) 1999 Free Software Foundation // by Alexandre Oliva // based on bug report by Andreas Stolcke // Fails with dwarf debugging. // crash test - XFAIL i386-pc-solaris* template struct foo { int data[1]; }; template struct bar { bar(foo<> *); }; template bar::bar(foo<> *x) { *x; } void baz() { foo<> *baz; bar<> baar(baz); }