blob: b1092e22d7545fb62dfedcb15e3681043f7111de [file] [log] [blame]
#include "lspec.h"
static int dupname (int x) { label: return x; }
int NameSpace::overload()
{
return 23;
}
int body_elsewhere()
{
int x = 5;
#include "body.h"
}
int main()
{
return dupname(0) + m(0) + n(0) + f1() + f2() + body_elsewhere();
}