X-Git-Url: https://oss.titaniummirror.com/gitweb/?a=blobdiff_plain;f=gcc%2Ftestsuite%2Fg%2B%2B.old-deja%2Fg%2B%2B.other%2Fenum1.C;fp=gcc%2Ftestsuite%2Fg%2B%2B.old-deja%2Fg%2B%2B.other%2Fenum1.C;h=0000000000000000000000000000000000000000;hb=6fed43773c9b0ce596dca5686f37ac3fc0fa11c0;hp=f692991a44242fa9e3232d415d0d44ad0942ff1c;hpb=27b11d56b743098deb193d510b337ba22dc52e5c;p=msp430-gcc.git diff --git a/gcc/testsuite/g++.old-deja/g++.other/enum1.C b/gcc/testsuite/g++.old-deja/g++.other/enum1.C deleted file mode 100644 index f692991a..00000000 --- a/gcc/testsuite/g++.old-deja/g++.other/enum1.C +++ /dev/null @@ -1,15 +0,0 @@ -extern "C" void abort(); - -struct A -{ - enum { a = 3}* p; - int f() { return (int) a; } -}; - -int main() -{ - A a; - - if (a.f() != 3) - abort(); -}