xref: /openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.brendan/enum5.C (revision c87b03e512fc05ed6e0222f6fb0ae86264b1d05b)
1 // Build don't link:
2 // Special g++ Options: -pedantic-errors
3 // GROUPS passed enums
4 enum Thing { FIRST, SECOND } ;
5 
main()6 int main()
7 {
8     Thing x = FIRST ;
9     x = 27 ;          // this line should be a type error.// ERROR - .*
10 }
11