FSF GCC merge 02/23/03
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.jason / shadow1.C
blobf3f4d17979cf12e65a8f5cc5eb3b312204c835e0
1 // Special g++ Options: -Wshadow
2 // Build don't link:
4 class x {
5 public:
6         void fun();
7 private:
8         int foo;
9 };
11 void x::fun() { }
13 main ()
15         float foo;