reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced
    1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19
   20
   21
   22
   23
   24
   25
   26
   27
   28
   29
   30
   31
   32
   33
   34
   35
   36
// RUN: %clang_cc1 -ast-print -std=c++17 %s | FileCheck %s

struct S {
template<typename ... T>
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] {
}
}

};