binutils-gdb/gdb/testsuite/gdb.cp/pr10728-y.cc

12 lines
125 B
C++

#include "pr10728-x.h"
struct Y{};
X* y()
{
static X xx;
static Y yy;
xx.y1 = &yy;
xx.y2 = xx.y1+1;
return &xx;
}