FSF GCC merge 02/23/03
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / enum4.C
blobf401613df3a9f595a346930679b8d99049c6bd23
1 // Origin: Mark Mitchell <mark@codesourcery.com>
2 // Special g++ Options: -fshort-enums
4 enum E { 
5   a = -312
6 };
8 E e = a;
10 int main () {
11   if ((int) e != -312)
12     return 1;