Index: test/Import/indirect-goto/Inputs/F.cpp =================================================================== --- test/Import/indirect-goto/Inputs/F.cpp +++ test/Import/indirect-goto/Inputs/F.cpp @@ -0,0 +1,6 @@ +void f() { + void const *l1_ptr = &&l1; + goto *l1_ptr; +l1: + return; +} Index: test/Import/indirect-goto/test.cpp =================================================================== --- test/Import/indirect-goto/test.cpp +++ test/Import/indirect-goto/test.cpp @@ -0,0 +1,10 @@ +// 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(); +}