summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/20090107-1.C
blob: 7c50675dbe0d76da40f193b9490b8103491be64f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* { dg-do compile } */
/* { dg-require-effective-target lto } */
/* { dg-options "-fwhopr -Wuninitialized -O1" }  */

template <typename T> struct Q1 { typedef int x; };
template <typename T> struct Q2 {
  typename Q1<T>::x f() {
    int k;
    return k; /* { dg-warning "'k' is used uninitialized in this function" }  */
  }
};
int foo() { return Q2<int>().f(); }