1 extern int invalid;
2 
3 enum e {
4 	E = 1 ? 1 : invalid
5 };
6 
7 /*
8  * check-name: enum-init-constness
9  */
10