1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-30 07:22:55 +01:00
llvm-mirror/test/Regression/C++Frontend/2003-11-18-EnumArray.cpp
Tanya Lattner f3241d10fa Adding RUN lines.
llvm-svn: 17529
2004-11-06 22:29:57 +00:00

15 lines
231 B
C++

// RUN: %llvmgxx -S %s -o - | llvm-as -f -o /dev/null
enum TchkType {
tchkNum, tchkString, tchkSCN, tchkNone
};
struct Operator {
enum TchkType tchk[8];
};
struct Operator opTab[] = {
{{tchkNum, tchkNum, tchkString} }
};