// Build don't link: // Default arguments containing more than one non-nested explicit // template argument leads to parse error template class foo1; template class foo2; struct bar { template bar(int i = foo1::baz, // ok int j = int(foo2::baz), // ok int k = foo2::baz) {} // gets bogus error - before > - XFAIL *-*-* };