merge with trunk @ 139506
[official-gcc.git] / gcc / testsuite / g++.dg / warn / Wuninitializable-member.C
blob1c37e3ea0239ec439769c4ee144dcb33f0a24f94
1 // { dg-do compile } 
2 // { dg-options "-Wuninitialized" }
4 class X {
5   int & flag;// { dg-warning "non-static reference 'int& X::flag' in class without a constructor" }
6 public:
7   void f(){ flag++ ; }
8 };
10 class Y {
11   const int var;// { dg-warning "non-static const member 'const int Y::var' in class without a constructor" }
12 public:
13   int g(){ return 2*var; }