X-Git-Url: https://oss.titaniummirror.com/gitweb?a=blobdiff_plain;f=gcc%2Ftestsuite%2Fg%2B%2B.old-deja%2Fg%2B%2B.other%2Ffriend9.C;fp=gcc%2Ftestsuite%2Fg%2B%2B.old-deja%2Fg%2B%2B.other%2Ffriend9.C;h=0000000000000000000000000000000000000000;hb=6fed43773c9b0ce596dca5686f37ac3fc0fa11c0;hp=442d9899e3a7d0d7de58636389a527b72ca80d2a;hpb=27b11d56b743098deb193d510b337ba22dc52e5c;p=msp430-gcc.git diff --git a/gcc/testsuite/g++.old-deja/g++.other/friend9.C b/gcc/testsuite/g++.old-deja/g++.other/friend9.C deleted file mode 100644 index 442d9899..00000000 --- a/gcc/testsuite/g++.old-deja/g++.other/friend9.C +++ /dev/null @@ -1,23 +0,0 @@ -// Build don't link: - -// Copyright (C) 2000 Free Software Foundation, Inc. -// Contributed by Nathan Sidwell 24 Nov 2000 - -// Bug 853: We reported the wrong line no for a friend access violation - -class F -{ - class Internal; // ERROR - is private -}; - -class C -{ - friend class F::Internal; // ERROR - in this context - public: - typedef enum { A, B } e; - - C (); - ~C(); - - void m(); -};