2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.benjamin / p13721.C
blob960c3e0dd86b4d64212ec9985429d6b744c1cde9
1 // { dg-do assemble  }
2 // prms-id: 13721
4 class A
6   public :
7   int a;
8 };
9 class B : public A
11   public :
12   void cmp(int a, int b) {}
13   B(int a = 0)
14     {
15       cmp(A::a, a); //should not give warning
16     }
18 int main(void)
20   return(1);