// Compile: cc test_6_10_preproc.c -std=c23
#include <stdio.h>

#if NEGTEST
#define EMPTY
EMPTY #include <stdio.h>
#endif

#define PLUS_ONE(x) ((x)+1)
#if (1)
static int v = PLUS_ONE(4);
#endif

int main(void) {
  printf("%d\n", v);
  return 0;
}
