mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-23 21:45:46 -04:00

Reviewers: a.sidorin, a_sidorin Reviewed By: a_sidorin Subscribers: a_sidorin, martong, cfe-commits Differential Revision: https://reviews.llvm.org/D50550 llvm-svn: 339506
9 lines
232 B
C++
9 lines
232 B
C++
// 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));
|
|
}
|