rt_gccstream/gcc/testsuite/g++.dg/20090121-1.C

20 lines
317 B
C

// { 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 ();
}