X-Git-Url: https://oss.titaniummirror.com/gitweb/?a=blobdiff_plain;f=gcc%2Ftestsuite%2Fg%2B%2B.old-deja%2Fg%2B%2B.law%2Foperators33.C;fp=gcc%2Ftestsuite%2Fg%2B%2B.old-deja%2Fg%2B%2B.law%2Foperators33.C;h=0000000000000000000000000000000000000000;hb=6fed43773c9b0ce596dca5686f37ac3fc0fa11c0;hp=bdf5147b875a3b53a448a9aac2ca84f6e3126b3a;hpb=27b11d56b743098deb193d510b337ba22dc52e5c;p=msp430-gcc.git diff --git a/gcc/testsuite/g++.old-deja/g++.law/operators33.C b/gcc/testsuite/g++.old-deja/g++.law/operators33.C deleted file mode 100644 index bdf5147b..00000000 --- a/gcc/testsuite/g++.old-deja/g++.law/operators33.C +++ /dev/null @@ -1,28 +0,0 @@ -// Build don't link: -// GROUPS passed operators -// opr-new file -// From: flisakow@cae.wisc.edu -// Date: Thu, 1 Sep 94 18:21:09 CDT -// Subject: g++ bug? -// Message-ID: <9409012321.AA05346@hprisc-19.cae.wisc.edu> - -#include - - -struct fcell { - FILE *fd; - struct fcell *next; -}; - - -class FStack { -public: - struct fcell *top; - FStack() { top = NULL ; } ; - inline void push(FILE * fd1, int line_num, char *fname = NULL) { - struct fcell *tmp = new struct fcell; - tmp->fd = fd1; - tmp->next = top; - top = tmp ; - } -};