shithub: scc

ref: 0645a868520feb0fac8932b08b6c4e1258b58c0c
dir: /tests/execute/0148-cpp-string.c/

View raw version
#define x(y) #y

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

	return (*p == 'h') ? 0 : 1;
}