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

13 lines
176 B
C++
Raw Normal View History

enum TchkType {
tchkNum, tchkString, tchkSCN, tchkNone
};
struct Operator {
enum TchkType tchk[8];
};
struct Operator opTab[] = {
{{tchkNum, tchkNum, tchkString} }
};