From: Mark Mitchell Date: Sun, 30 May 1999 21:55:38 +0000 (+0000) Subject: Fix test; original version was not the intended one. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=6f0ef2f4dbf524ab08c5aaca551bb67c2d53adcd;p=gcc.git Fix test; original version was not the intended one. From-SVN: r27260 --- diff --git a/gcc/testsuite/g++.old-deja/g++.pt/virtual3.C b/gcc/testsuite/g++.old-deja/g++.pt/virtual3.C index 8fe367a3add..608808219c5 100644 --- a/gcc/testsuite/g++.old-deja/g++.pt/virtual3.C +++ b/gcc/testsuite/g++.old-deja/g++.pt/virtual3.C @@ -1,14 +1,13 @@ // Build don't link: // Origin: Mark Mitchell -template -struct S : virtual public X +struct S { int i; }; template -struct X : virtual public T, virtual public S +struct X : virtual public T, virtual public S { int i;