aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/warn/private1.C
blob: c42d6b7e328469a21aa899d3bbc8bcb636e020ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// g++ should not complain about A having private [cd]tors.

class A
{
  A();
  ~A();
public:
  int dummy();			// needed to get bogus warning
  static A* get_A ();
};

A* A::get_A()
{
  static A a;
  return &a;
}