enum test {
foo = 42,
bar = 42
};

main() {
enum test test;

test = foo;
printf("foo = %d\n", foo);
}
