update test
[oota-llvm.git] / test / C++Frontend / 2003-11-18-EnumArray.cpp
1 enum TchkType {
2   tchkNum, tchkString, tchkSCN, tchkNone
3 };
4
5 struct Operator {
6   enum TchkType tchk[8];
7 };
8
9 struct Operator opTab[] = {
10   {{tchkNum, tchkNum, tchkString} }
11 };
12