PR c++/80290
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.bugs / 900511_02.C
blobf2f5650843d79991c4cf72c8b1cd24b4bcccfee0
1 // { dg-do assemble  }
2 // g++ 1.37.1 bug 900511_02
4 // g++ does not properly shadow names of types with names of data members
5 // in cases where the type names in question are used in the context of
6 // formal parameters lists for member functions.
8 // keywords: typedef names, shadowing, scope, formal parameter list
10 // cfront 2.0 passes this test.
12 enum enum0 { enum0_value_0 };   
14 struct struct0 {
15   int enum0;                    
16   void member_function (enum0 e); // { dg-error "" } invalid use of struct-local member
19 void class0::member_function (enum0 e) {        // { dg-error "" } syntax error
22 int main () { return 0; }