diff --git a/gcc/testsuite/g++.old-deja/g++.oliva/ChangeLog b/gcc/testsuite/g++.old-deja/g++.oliva/ChangeLog index 4ab874ddcd1..f19eeb0df05 100644 --- a/gcc/testsuite/g++.old-deja/g++.oliva/ChangeLog +++ b/gcc/testsuite/g++.old-deja/g++.oliva/ChangeLog @@ -1,3 +1,7 @@ +1999-11-11 Alexandre Oliva + + * template9.C: New test. + 1999-09-18 Alexandre Oliva * overload1.C: New test. diff --git a/gcc/testsuite/g++.old-deja/g++.oliva/template9.C b/gcc/testsuite/g++.old-deja/g++.oliva/template9.C new file mode 100644 index 00000000000..fc2df3e8a60 --- /dev/null +++ b/gcc/testsuite/g++.old-deja/g++.oliva/template9.C @@ -0,0 +1,11 @@ +// Build don't link: + +// Copyright (C) 1999 Free Software Foundation + +// by Alexandre Oliva +// based on bug report by Philippe Bouchard + +struct foo { + template + void bar() = 0; // ERROR - invalid initializer - XFAIL *-*-* +};