#include <stdio.h>

enum foo {a, b};

int main(void) {
	enum foo f = 32;
	return 0;
}
