blob: 32134eff85cbffaffd8750b565601d3874efccd6 [file] [log] [blame]
// Build don't link:
// Special g++ Options: -pedantic-errors
// GROUPS passed enums
enum Thing { FIRST, SECOND } ;
int main()
{
Thing x = FIRST ;
x = 27 ; // this line should be a type error.// ERROR - .*
}