mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-09 04:21:49 +08:00
22842ff63e
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.
8 lines
77 B
C++
8 lines
77 B
C++
#include "pr10728-x.h"
|
|
|
|
int main()
|
|
{
|
|
X x = y();
|
|
return 0; // marker 1
|
|
}
|