From: Mark Mitchell Date: Mon, 1 Nov 1999 23:38:57 +0000 (+0000) Subject: Remove duplicate of friend18.C X-Git-Tag: prereleases/libstdc++-2.92~9749 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3d43c0742f8f99e615eca4d3e19b503665bf377e;p=thirdparty%2Fgcc.git Remove duplicate of friend18.C From-SVN: r30334 --- diff --git a/gcc/testsuite/g++.old-deja/g++.pt/friend19.C b/gcc/testsuite/g++.old-deja/g++.pt/friend19.C deleted file mode 100644 index 998e1639fe69..000000000000 --- a/gcc/testsuite/g++.old-deja/g++.pt/friend19.C +++ /dev/null @@ -1,26 +0,0 @@ -// Build don't link: - -template -class S1 -{ - template - friend class S2; - - static int i; -}; - - -template -class S2 -{ -public: - static void f() { S1::i = 3; } -}; - - -void g() -{ - S2::f(); - S2::f(); -} -