From-SVN: r23417
This commit is contained in:
Jason Merrill 1998-10-28 18:08:06 -05:00
parent e2c3143293
commit 63ece2d277
4 changed files with 0 additions and 7 deletions

View File

@ -1,6 +1,5 @@
// Build don't link:
// Special g++ Options:
// crash test - XFAIL
class Pooled
{

View File

@ -5,8 +5,6 @@
// Submitted by Melissa O'Neill <oneill@cs.sfu.ca>
// the vtable of Foo<int> wouldn't be generated
// excess errors test - XFAIL *-*-*
template <typename A>
struct Foo {
virtual void foo() {}

View File

@ -2,8 +2,6 @@
// Additional sources: instantiate5.cc instantiate5-main.cc
// excess errors test - XFAIL *-*-*
// `global constructors' are given the same name, based on foo(), on
// both translation units, which is wrong, because it must be possible
// to define template functions in multiple translation units, as long

View File

@ -1,7 +1,5 @@
// Build don't link:
// crash test - XFAIL *-*-*
template <class T> void foo();
void (*bar)() = foo<void>;