[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / clang / test / Import / enum / test.cpp
blob3698aea5012c9fa2e4ebecb5403e974a69a83ba1
1 // RUN: clang-import-test -dump-ast -import %S/Inputs/S.cpp -expression %s | FileCheck %s
3 // CHECK: |-EnumDecl
4 // CHECK-SAME: Inputs/S.cpp:1:1, line:4:1> line:1:6 E
5 // CHECK: OpaqueWithType 'long'
7 void expr() {
8 static_assert(E::a + E::b == 3);
9 static_assert(sizeof(OpaqueWithType) == sizeof(long));