11 lines
225 B
C++
11 lines
225 B
C++
// RUN: clang-import-test -dump-ast -import %S/Inputs/F.cpp -expression %s | FileCheck %s
|
|
|
|
// CHECK: IndirectGotoStmt
|
|
// CHECK-NEXT: ImplicitCastExpr
|
|
// CHECK-NEXT: DeclRefExpr
|
|
// CHECK-SAME: 'l1_ptr'
|
|
|
|
void expr() {
|
|
f();
|
|
}
|