view gcc/testsuite/g++.dg/cpp1y/lambda-generic-dep.C @ 158:494b0b89df80 default tip

...
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 25 May 2020 18:13:55 +0900
parents 84e7813d76e9
children
line wrap: on
line source

// Generic lambda type dependence test part from N3690 5.1.2.12
// { dg-do compile { target c++14 } }
// { dg-options "-pedantic" }

void f(int, const int (&)[2] = {}) { } // #1
void f(const int&, const int (&)[1]) { } // #2

void test()
{
  const int x = 17;
  auto g = [](auto a) {
    f(x); // OK: calls #1, does not capture x
  };
  auto g2 = [=](auto a) {
    int selector[sizeof(a) == 1 ? 1 : 2]{};
    f(x, selector); // OK: is a dependent expression, so captures x
  };
}

struct S {
  struct N {
    auto test () { return 7.f; }
  };
};

#include <utility>

int main()
{
  auto f = [] <typename T> (T const& s) mutable {	// { dg-warning "lambda templates are only available with" "" { target c++17_down } }
    typename T::N x;
    return x.test ();
  };
  auto g = [] (auto const& s) {
    typename std::decay<decltype (s)>::type::N x;
    return x.test ();
  };

  S i;
  f(i);
  g(i);
}