shithub: scc

ref: 4be5b671982310f44410c71e58e88f2f2d8d2ef5
dir: /cc1/tests/test027.c/

View raw version
/* See LICENSE file for copyright and license details. */

/*
name: TEST027
description: Test of cpp stringizer
error:
output:
G3	I	F	"main
{
\
A5	P	"p
V7	K	#N19
Y6	V7	"	(
	#"hello is better than bye
	#K00
)
	A5	Y6	'P	:P
	h	A5	@K	gI
}
*/

#define x(y) #y

int
main(void)
{
	char *p;
	p = x(hello)  " is better than bye";

	return *p;
}