blob: 9921e2e9cce30dce24b39994f648ce95f6daf6c2 [file] [log] [blame]
enum tag {
X=1,
Y=2,
};
static void main(void)
{
enum tag foo;
foo = Y;
}