1*003140d1SRaphael Isemann // RUN: clang-import-test -dump-ast -import %S/Inputs/F.cpp -expression %s | FileCheck %s 2*003140d1SRaphael Isemann 3*003140d1SRaphael Isemann // CHECK: IndirectGotoStmt 4*003140d1SRaphael Isemann // CHECK-NEXT: ImplicitCastExpr 5*003140d1SRaphael Isemann // CHECK-NEXT: DeclRefExpr 6*003140d1SRaphael Isemann // CHECK-SAME: 'l1_ptr' 7*003140d1SRaphael Isemann expr()8*003140d1SRaphael Isemannvoid expr() { 9*003140d1SRaphael Isemann f(); 10*003140d1SRaphael Isemann } 11