shithub: scc

ref: dfc2beaa2c71a595983aefba6782ad412a4662b6
dir: /cc1/tests/test032.c/

View raw version

/*
name: TEST032
description: test special characters @ and $ in macro definitions
error:
output:
G5	F	"main
{
\
V9	K	#N44
Y8	V9	"	(
	#"This is a string $ or # or ##and it is ok !
	#K00
)
A7	P	"p
	A7	Y8	'P	:P
	h	A7	#P0	!I
}
*/

#define M1(x) "This is a string $ or # or ##" ## #x

int
main(void)
{
	char *p = M1(and it is ok!);

	return p != 0;
}