blob: b8b1209d32617c28b750d7e0b18433c5076f8983 [file] [log] [blame]
// { dg-do assemble }
// { dg-options "-Wall" }
enum tristate { no = -1, maybe, yes };
tristate
definite_tristate (int truth)
{
return (truth) ? yes : no;
}