(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
parse/
enum8.C
// PR c++/16603

char const c = 'q';

enum
  {
    x = c,
    y = sizeof(x)
  };

int test[y == sizeof(char) ? 1 : -1];