new1.C, [...]: Removed XFAIL.

* new1.C, template8.C: Removed XFAIL.
* template3.C: Re-introduced XFAIL.  :-(

From-SVN: r28542
This commit is contained in:
Alexandre Oliva 1999-08-05 21:32:21 +00:00 committed by Alexandre Oliva
parent b28f69a0a0
commit ecd7226f3b
4 changed files with 10 additions and 5 deletions

View File

@ -1,3 +1,8 @@
1999-08-05 Alexandre Oliva <oliva@dcc.unicamp.br>
* new1.C, template8.C: Removed XFAIL.
* template3.C: Re-introduced XFAIL. :-(
1999-08-03 Alexandre Oliva <oliva@dcc.unicamp.br>
* ext1.C: New test.

View File

@ -4,7 +4,7 @@
// based on comp.std.c++ post by Alexander Schiemann <aschiem@math.uni-sb.de>
// execution test - XFAIL *-*-*
// execution test
#include <new>

View File

@ -5,7 +5,7 @@
// by Alexandre Oliva <oliva@dcc.unicamp.br>
// based on bug report by Ulf Larsson <ulf.larsson@mbow337.swipnet.se>
// fixed crash test
// crash test - XFAIL *-*-*
template <class T> class C {};
class foo {} bar = bar.C();

View File

@ -10,9 +10,9 @@ struct B {
} b;
template <class T> void foo() {
b.bar<T>(); // gets bogus error - bar undeclared - XFAIL *-*-*
b.template bar<T>(); // gets bogus error - ditto - XFAIL *-*-*
b.bar<T>(); // no longer gets bogus error - bar undeclared
b.template bar<T>(); // no longer gets bogus error - ditto
b.B::bar<T>(); // ok
}
template void foo<void>(); // gets bogus error - XFAIL *-*-*
template void foo<void>(); // no longer gets bogus error