FSF GCC merge 02/23/03
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.jason / redecl1.C
blobfecace37af42ff80c62b001243d99a0de1e5acc2
1 class A
3 public:
4     A (const A& ccref);
5     friend A const re (const A& v1); // ERROR - 
6 };
8 A // const
9 re (const A& ref)
10 {                               // ERROR - mismatched decls
11     return A (ref);