0
0
Fork 0
mirror of https://git.code.sf.net/p/quake/quakeforge synced 2025-06-03 01:51:02 +00:00
quakeforge/tools/qfcc/test/old/file-line.r

28 lines
455 B
R
Raw Normal View History

void printf (string fmt, ...) = #0;
@overload void test (integer x)
{
printf ("\"%s\" %s %d %s\n",
__PRETTY_FUNCTION__, __FUNCTION__, __LINE__, __FILE__);
}
@overload void test (void)
{
printf ("\"%s\" %s %d %s\n",
__PRETTY_FUNCTION__, __FUNCTION__, __LINE__, __FILE__);
}
void foo (void)
{
printf ("\"%s\" %s %d %s\n",
__PRETTY_FUNCTION__, __FUNCTION__, __LINE__, __FILE__);
}
integer main ()
{
test (1);
test ();
foo ();
return 0;
}