2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.dg / warn / private1.C
blobc42d6b7e328469a21aa899d3bbc8bcb636e020ea
1 // g++ should not complain about A having private [cd]tors.
3 class A
5   A();
6   ~A();
7 public:
8   int dummy();                  // needed to get bogus warning
9   static A* get_A ();
12 A* A::get_A()
14   static A a;
15   return &a;