X-Git-Url: https://oss.titaniummirror.com/gitweb?a=blobdiff_plain;f=gcc%2Ftestsuite%2Fg%2B%2B.old-deja%2Fg%2B%2B.bugs%2F900210_05.C;fp=gcc%2Ftestsuite%2Fg%2B%2B.old-deja%2Fg%2B%2B.bugs%2F900210_05.C;h=0000000000000000000000000000000000000000;hb=6fed43773c9b0ce596dca5686f37ac3fc0fa11c0;hp=fc0ead9b514913a4314b8aad6e98f8580b915559;hpb=27b11d56b743098deb193d510b337ba22dc52e5c;p=msp430-gcc.git diff --git a/gcc/testsuite/g++.old-deja/g++.bugs/900210_05.C b/gcc/testsuite/g++.old-deja/g++.bugs/900210_05.C deleted file mode 100644 index fc0ead9b..00000000 --- a/gcc/testsuite/g++.old-deja/g++.bugs/900210_05.C +++ /dev/null @@ -1,37 +0,0 @@ -// g++ 1.36.1 bug 900210_05 - -// Section 18.3 of the 2.0 Reference Manual says "An implementation -// providing { anachronistic features } should also provide a way for -// the user to ensure that they do not occur in a source file." - -// The *only* proper way to "ensure" an absence of anachronstic features -// is for C++ language processors to generate errors (rather than just -// warnings) when such features are used. These errors could perhaps be -// triggered by some set of command line options, or by the absence of -// certain command line options. (For g++, the -pedantic and -traditional -// options come to mind.) - -// The use of errors rather than warnings is important because errors -// usually result in non-zero exit status codes for language processors -// and these non-zero exit stati can be automatically checked during -// normal execution of a Makefile. - -// cfront 2.0 provides the +p option which causes errors to be generated for -// all cases of anachronistic usage. - -// g++ generates neither errors nor warnings for such usage, even when the -// -ansi and -pedantic options are used. - -// Cfront 2.0 passes this test. - -// keywords: anachronism, enum types, integral types, implicit type conversions - -enum enum0 { enum_value_0 } enum0_object; -int int0_object; - -void function () -{ - enum0_object = int0_object; /* ERROR - */ -} - -int main () { return 0; }