// Compile: cc test_6_4_lexical.c -std=c23
#include <assert.h>

int main(void) {
  int/**/x/**/ =/**/ 1;
#ifdef NEGTEST
  int y=0;
  y+++++x;
#endif
  assert(x == 1);
  return 0;
}
