blob: 60a72741661b13c9b710f59af9220872a6705ba8 [file] [log] [blame]
// PR c++/53210
// { dg-options "-Wall" }
struct S
{
S(int i) : j(j) { } // { dg-warning "is initialized with itself" }
int j;
};