(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
other/
pr86669.C
// PR c++/86669
// { dg-do compile }

struct S { S (); };
struct T : public S {};

S::S ()
{
  int *p = { (int *) &p };
}