1 // { dg-do assemble  }
2 
3 enum tristate { no = -1, maybe, yes };
4 
foobar()5 void foobar ()
6 {
7   tristate var = no;		// { dg-bogus "" }
8 }
9