Index: clang/lib/AST/StmtPrinter.cpp =================================================================== --- clang/lib/AST/StmtPrinter.cpp +++ clang/lib/AST/StmtPrinter.cpp @@ -1894,6 +1894,9 @@ case LCK_VLAType: llvm_unreachable("VLA type in explicit captures."); } + + if (C->isPackExpansion()) + OS << "..."; if (Node->isInitCapture(C)) PrintExpr(C->getCapturedVar()->getInit()); Index: clang/test/AST/ast-printer-lambda.cpp =================================================================== --- /dev/null +++ clang/test/AST/ast-printer-lambda.cpp @@ -0,0 +1,36 @@ +// RUN: %clang_cc1 -ast-print -std=c++17 %s | FileCheck %s + +struct S { +template +void test1(int i, T... t) { +{ + auto lambda = [i]{}; + //CHECK: [i] { +} +{ + auto lambda = [=]{}; + //CHECK: [=] { +} +{ + auto lambda = [&]{}; + //CHECK: [&] { +} +{ + auto lambda = [t..., i]{}; + //CHECK: [t..., i] { +} +{ + auto lambda = [&t...]{}; + //CHECK: [&t...] { +} +{ + auto lambda = [this, &t...]{}; + //CHECK: [this, &t...] { +} +{ + auto lambda = [t..., this]{}; + //CHECK: [t..., this] { +} +} + +}; \ No newline at end of file