Sign in
ara-mdk
/
platform
/
external
/
llvm
/
ef476fdce2d194b5b335c15cd8a545ceeeb633b1
/
.
/
test
/
C++Frontend
/
2003-11-18-EnumArray.cpp
blob: 6eaf9d66f2dc7bc05afc5491881f7644dc4e3ee0 [
file
] [
log
] [
blame
]
// 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
}
}
};