old-cross-binutils/gdb/testsuite/gdb.cp/pr10728-y.cc
David Blaikie 22842ff63e Return by value to coax Clang into emitting the full definition of a test type.
gdb/testsuite/
	* gdb.cp/pr10728-x.cc: Return by value instead of pointer to coax
	Clang into emitting the definition of the type.
	* gdb.cp/pr10728-x.h: Ditto.
	* gdb.cp/pr10728-y.cc: Ditto.
2014-04-24 22:15:40 -07:00

11 lines
116 B
C++

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