summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/20090121-1.C
blob: 9dff0f87af38fbccb3f0c5a49d12cba986759526 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// { dg-do compile }
// { dg-require-effective-target lto }
// { dg-options "-fwhopr -Wuninitialized -O2" }
class A
{
private:
  int y;

public:
  A () { int x; y = x + 1; } /* { dg-warning "'x' is used uninitialized in this function" }  */
  int get_y () { return y; }
};

int foo()
{
  A a;
  return a.get_y ();
}