(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
ext/
complit13.C
// PR c++/10207
// { dg-options "" }

typedef struct { } EmptyStruct;
typedef struct { EmptyStruct Empty; } DemoStruct;

void Func()
{
  DemoStruct Demo;
  Demo.Empty = (EmptyStruct) {};
}