aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.jason/enum2.C
blob: 8fb753868784be15ec5b1fe0db7a878f00adc36e (plain)
1
2
3
4
5
6
7
8
// Build don't link:

enum tristate { no = -1, maybe, yes };

void foobar ()
{
  tristate var = no;		// gets bogus error
}