aboutsummaryrefslogtreecommitdiff
path: root/gdb/testsuite/gdb.cp/pr10728-y.cc
blob: 84b222d712d376efa5187afe8906246488779379 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include "pr10728-x.h"
struct Y{};

X* y()
{
  static X xx;
  static Y yy;
  xx.y1 = &yy;
  xx.y2 = xx.y1+1;
  return &xx;
}