shithub: scc

ref: f6bedbd384f66b022d44140e44d2d0e63f7b1532
dir: /cc1/tests/test031.c/

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

/*
name: TEST031
description: Test concatenation in preprocessor
error:
TODO
output:
 
*/

#define CAT(x,y) x ## y
#define XCAT(x,y) CAT(x,y)
#define FOO foo
#define BAR bar

int
main(void)
{
	int foo, bar, foobar;

	CAT(foo,bar) = foo + bar;
	XCAT(FOO,BAR) = foo + bar;
	return 0;
}