* template7.C: Crash test passes, bug error is now bogus.
authorAlexandre Oliva <oliva@lsd.ic.unicamp.br>
Fri, 19 Nov 1999 06:36:45 +0000 (06:36 +0000)
committerAlexandre Oliva <oliva@gcc.gnu.org>
Fri, 19 Nov 1999 06:36:45 +0000 (06:36 +0000)
From-SVN: r30583

gcc/testsuite/g++.old-deja/g++.oliva/ChangeLog
gcc/testsuite/g++.old-deja/g++.oliva/template7.C

index f19eeb0df054de144eaf5f6c2c8b3595e4b244f6..79ae203b42d85a79785a198d3281b98e9ee94351 100644 (file)
@@ -1,3 +1,7 @@
+1999-11-19  Alexandre Oliva  <oliva@lsd.ic.unicamp.br>
+
+       * template7.C: Crash test passes, bug error is now bogus.
+
 1999-11-11  Alexandre Oliva  <oliva@lsd.ic.unicamp.br>
 
        * template9.C: New test.
index 90da43178cc66ace673339adf75f93e3315e200e..af926c072387fb0467bd3dbe990c23fabf69ae0c 100644 (file)
@@ -2,15 +2,13 @@
 
 // Copyright (C) 1999 Free Software Foundation
 
-// by Alexandre Oliva <oliva@dcc.unicamp.br>
+// by Alexandre Oliva <oliva@lsd.ic.unicamp.br>
 // simplified from bug report by Paul Burchard <burchard@pobox.com>
 
-// crash test - XFAIL *-*-*
-
 template<class> struct A {};
 template<template<class> class T> struct B {
   B() {
-    T<B>();
+    T<B>(); // gets bogus error - conversion from int to non-scalar - XFAIL *-*-*
   }
 };
 B<A> foo;