OSDN Git Service

* g++.dg/ext/altivec-17.C: Adjust error message.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / 20090121-1.C
1 // { dg-do compile }
2 // { dg-require-effective-target lto }
3 // { dg-options "-fwhopr -Wuninitialized -O2" }
4 class A
5 {
6 private:
7   int y;
8
9 public:
10   A () { int x; y = x + 1; } /* { dg-warning "'x' is used uninitialized in this function" }  */
11   int get_y () { return y; }
12 };
13
14 int foo()
15 {
16   A a;
17   return a.get_y ();
18 }
19