reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced
    1
    2
    3
    4
    5
    6
    7
    8
// 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));
}