diff options
Diffstat (limited to 'llvm/test/C++Frontend/2003-11-18-EnumArray.cpp')
-rw-r--r-- | llvm/test/C++Frontend/2003-11-18-EnumArray.cpp | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/llvm/test/C++Frontend/2003-11-18-EnumArray.cpp b/llvm/test/C++Frontend/2003-11-18-EnumArray.cpp deleted file mode 100644 index 6eaf9d66f2d..00000000000 --- a/llvm/test/C++Frontend/2003-11-18-EnumArray.cpp +++ /dev/null @@ -1,14 +0,0 @@ -// 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} } -}; - |