shithub: scc

ref: 6d5bea0f5b5b0e0f4c92bce3b1819f4cd52892f7
dir: /cc1/tests/test061.c/

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

/*
name: TEST061
description: Test for macros without arguments but with parenthesis
error:
output:
G3	I	F	"main
{
\
	h	#I1
}
*/

#define X (2)
#define L (0)
#define H (1)
#define Q(x) x

int
main(void)
{
	return X == L + H + Q(1);
}