aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/20090121-1.C
blob: ddfa3ad057ffda4d4ca85ccc2d4dd64890325540 (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 "-flto -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 ();
}