aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/warn/Winit-self.C
blob: 60a72741661b13c9b710f59af9220872a6705ba8 (plain)
1
2
3
4
5
6
7
8
// PR c++/53210
// { dg-options "-Wall" }

struct S
{
  S(int i) : j(j) { }  // { dg-warning "is initialized with itself" }
  int j;
};