(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
warn/
pr18016.C
/* { 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" }