* g++.old-deja/g++.pt/friend37.C: New test.

From-SVN: r23875
This commit is contained in:
Alexandre Oliva 1998-11-25 18:07:33 +00:00 committed by Alexandre Oliva
parent a46f03ea15
commit 3c9a0d0fed
2 changed files with 10 additions and 0 deletions

View File

@ -1,3 +1,7 @@
1998-11-26 Alexandre Oliva <oliva@dcc.unicamp.br>
* g++.old-deja/g++.pt/friend37.C: New test.
1998-11-25 Dave Love <d.love@dl.ac.uk>
* g77.f-torture/execute/u77-test.f (main): Avoid testing [f]statb

View File

@ -0,0 +1,6 @@
// Build don't link:
// Simplified from report by Volker Dobler <volker@hugo.physik.uni-konstanz.de>
template <class T> class A {
friend int ice<>( int k=0 ); // gets bogus error - ICE - XFAIL *-*-*
};