Projet_SETI_RISC-V/riscv-gnu-toolchain/binutils/gdb/testsuite/gdb.linespec/lspec.cc
2023-03-06 14:48:14 +01:00

19 lines
281 B
C++

#include "lspec.h"
static int dupname (int x) { label: return x; }
int NameSpace::overload()
{
return 23;
}
int body_elsewhere()
{
int x = 5; /* body_elsewhere marker */
#include "body.h"
}
int main()
{
return dupname(0) + m(0) + n(0) + f1() + f2() + body_elsewhere();
}