blob: 83dd6e0e18f580e03858f02ed83f77e8497a3c4f [file] [log] [blame]
// PR c++/16603
char const c = 'q';
enum
{
x = c,
y = sizeof(x)
};
int test[y == sizeof(char) ? 1 : -1];