rt_gccstream/gcc/testsuite/g++.old-deja/g++.other/bitfld4.C

26 lines
315 B
C

// { dg-do assemble }
// Origin: "Chen, Wen-Ke" <chwk@cs.arizona.edu>
template <class T>
bool operator!=(const T&, const T&);
enum MsgType {
MSG_DATA
};
class C {
public:
MsgType mType : 8;
};
int main(void)
{
extern C& c;
c.mType = MSG_DATA;
if (c.mType != MSG_DATA)
return -1;
return 0;
}