aboutsummaryrefslogtreecommitdiff
path: root/test/Import/cxx-casts/test.cpp
blob: 49215ce81c7b579864264010a469bcecf452b687 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// RUN: clang-import-test -dump-ast -import %S/Inputs/F.cpp -expression %s | FileCheck %s

// CHECK: CXXDynamicCastExpr
// CHECK-SAME: dynamic_cast
// CHECK-SAME: <Dynamic>

// CHECK: CXXStaticCastExpr
// CHECK-SAME: static_cast
// CHECK-SAME: <BaseToDerived (A)>

// CHECK: CXXReinterpretCastExpr
// CHECK-SAME: reinterpret_cast
// CHECK-SAME: <BitCast>

// CHECK: CXXConstCastExpr
// CHECK-SAME: const_cast
// CHECK-SAME: <NoOp>

void expr() {
  f();
}