1 // PR c++/16603
2 
3 char const c = 'q';
4 
5 enum
6   {
7     x = c,
8     y = sizeof(x)
9   };
10 
11 int test[y == sizeof(char) ? 1 : -1];
12