shithub: scc

ref: 8d6c4f8946dfb91a79e70efc04db7d089d4abbf0
dir: /cc1/tests/test028.c/

View raw version

/*
name: TEST028
description: Test of reinterpretation in define
error:
output:
F5	P
G6	F5	foo
{
\
V8	K	#3
Y10	V8
(
	#"hi
	#K00
)
	r	Y10	'P
}
*/


#define M(x) x
#define A(a,b) a(b)

char *
foo(void)
{
	return A(M,"hi");
}