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 998e1639fe6..00000000000 --- 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(); -} -