gcc/ChangeLog:
[official-gcc.git] / gcc / testsuite / g++.dg / warn / Wctor-dtor.C
blob15efb6b578d94ebe8fc577abeb548ddc3b112e3b
1 // PR c++/21347
2 // { dg-options "-Wctor-dtor-privacy" }
4 class A {
5 public:
6   int x;
7   int getX() { return x; } // comment out to avoid warning
8 };
10 int foo() {
11   A a; // accepted: clearly the ctor is not private
12   return a.x;