llvm-mirror/test/Regression/C++Frontend/2003-11-18-EnumArray.cpp

13 lines
176 B
C++
Raw Normal View History

2003-11-18 20:30:00 +00:00
enum TchkType {
tchkNum, tchkString, tchkSCN, tchkNone
};
struct Operator {
enum TchkType tchk[8];
};
struct Operator opTab[] = {
{{tchkNum, tchkNum, tchkString} }
};