aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8.1/gcc/testsuite/g++.dg/warn/pr18016.C
blob: 9cf1ea3b70ae233f5655ae4397c1177a6ade1b3f (plain)
1
2
3
4
5
6
7
8
9
10
11
/* { dg-do compile } */
/* { dg-options "-Wuninitialized -Winit-self" } */

class X {
  int i;
  X() : i(i) { }   // { dg-warning "initialized with itself" }
  X(int i) : i(i) { }
  X(const X& x) : i(x.i) { }
};

// { dg-prune-output "In constructor" }