X-Git-Url: https://oss.titaniummirror.com/gitweb/?a=blobdiff_plain;f=gcc%2Ftestsuite%2Fg%2B%2B.old-deja%2Fg%2B%2B.bugs%2F900519_03.C;fp=gcc%2Ftestsuite%2Fg%2B%2B.old-deja%2Fg%2B%2B.bugs%2F900519_03.C;h=0000000000000000000000000000000000000000;hb=6fed43773c9b0ce596dca5686f37ac3fc0fa11c0;hp=114d90960bf066fca33086ad76efc041fa826cda;hpb=27b11d56b743098deb193d510b337ba22dc52e5c;p=msp430-gcc.git diff --git a/gcc/testsuite/g++.old-deja/g++.bugs/900519_03.C b/gcc/testsuite/g++.old-deja/g++.bugs/900519_03.C deleted file mode 100644 index 114d9096..00000000 --- a/gcc/testsuite/g++.old-deja/g++.bugs/900519_03.C +++ /dev/null @@ -1,47 +0,0 @@ -// g++ 1.37.1 bug 900519_03 - -// The C++ Reference Manual says (in section 8.4.3) "A reference to a -// volatile T can be initialized with a volatile T or a plain T but not a -// const T. A reference to a const T can be initialized with a const T or -// a plain T or something that can be converted into a plain T, but not a -// volatile T." - -// g++ fails to disgnose such errors in most cases. - -// keywords: references, initialization, type qualifiers - -extern const int cint_obj; -extern volatile int vint_obj; - -void take_cint_ref (const int& arg) { } // ERROR - -void take_vint_ref (volatile int& arg) { } // ERROR - - -const int& global_cint_ref2 = vint_obj; // ERROR - - -volatile int& global_vint_ref1 = cint_obj; // ERROR - - -extern const int& extern_cint_ref; -extern volatile int& extern_vint_ref; - -void test_0 () -{ - const int& local_cint_ref2 = vint_obj; // ERROR - - - volatile int& local_vint_ref1 = cint_obj; // ERROR - -} - -void test_1 () -{ - take_cint_ref (vint_obj); // ERROR - - - take_vint_ref (cint_obj); // ERROR - caught -} - -void test_2 () -{ - take_cint_ref (extern_vint_ref); // ERROR - - - take_vint_ref (extern_cint_ref); // ERROR - -} - -int main () { return 0; }