ref: 6d283bb403b52df5f45b9cb81c6a70c181e45f7c
dir: /cc1/tests/test035.c/
/*
name: TEST035
description: Basic test for enumerations
output:
*/
enum E {
x,
y = 2,
z,
};
int
main()
{
enum E e;
if(x != 0)
return 1;
if(y != 2)
return 2;
if(z != 3)
return 3;
e = x;
return x;
}