blob: 468bc423130f842d9e8702c2f870ed81a6a96464 [file] [log] [blame]
enum E { C };
E foo() {
return C;
}
int main() {
if (foo() != C)
return 1;
}