Sign in
llvm
/
clang
/
327f79bc69360fadf014aecc5e81bc706f9693b6
/
.
/
test
/
Import
/
enum
/
test.cpp
blob: 491c3b7cb60d0ccee808192ef36442f48f681c09 [
file
] [
log
] [
blame
]
// RUN: clang-import-test -dump-ast -import %S/Inputs/S.cpp -expression %s | FileCheck %s
// CHECK: OpaqueWithType 'long'
void
expr
()
{
static_assert
(
E
::
a
+
E
::
b
==
3
);
static_assert
(
sizeof
(
OpaqueWithType
)
==
sizeof
(
long
));
}