X-Git-Url: https://oss.titaniummirror.com/gitweb?a=blobdiff_plain;f=gcc%2Ftestsuite%2Fg%2B%2B.old-deja%2Fg%2B%2B.bugs%2F900208_03.C;fp=gcc%2Ftestsuite%2Fg%2B%2B.old-deja%2Fg%2B%2B.bugs%2F900208_03.C;h=0000000000000000000000000000000000000000;hb=6fed43773c9b0ce596dca5686f37ac3fc0fa11c0;hp=667a174de22ce2a6359ab8fb43796a369f488917;hpb=27b11d56b743098deb193d510b337ba22dc52e5c;p=msp430-gcc.git diff --git a/gcc/testsuite/g++.old-deja/g++.bugs/900208_03.C b/gcc/testsuite/g++.old-deja/g++.bugs/900208_03.C deleted file mode 100644 index 667a174d..00000000 --- a/gcc/testsuite/g++.old-deja/g++.bugs/900208_03.C +++ /dev/null @@ -1,18 +0,0 @@ -// g++ 1.36.1 bug 900208_03 - -// The Cfront 2.0 reference manual (5.3.3) says "This type must be an -// object type; functions cannot be allocated this way...". - -// g++ fails to detect (at compile time) cases where an attempt is made to -// allocate a function using new. - -// keywords: operator new, function types - -typedef void (func_type) (); - -void global_function_0 () -{ - new func_type; // ERROR - missed by both cfront 2.0 and g++ 1.36.1 -} - -int main () { return 0; }