xref: /llvm-project/clang/test/Import/indirect-goto/test.cpp (revision 003140d1b2bfd9b9b0a88582eb426c0912c5f7f2)
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 Isemann void expr() {
9*003140d1SRaphael Isemann   f();
10*003140d1SRaphael Isemann }
11