shithub: scc

ref: 5918a7742bbad4a34ece6c034020c7bc562e0f1f
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;
}