// Build don't link: // Copyright (C) 1999, 2000 Free Software Foundation // by Alexandre Oliva // simplified from bug report by Paul Burchard template struct A {}; template class T> struct B { B() { T(); // gets bogus error - conversion from int to non-scalar } }; B foo;