aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/abi/lambda-ctx1.h
blob: 9afb66aae76a3407492ba4d2d6befc6b3a2b71e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
inline auto L2 = [] <typename T, typename U> (T, U) -> void {};
namespace B
{
  inline auto L3 = [] <typename T, typename U> (T, U) -> void {};
}

struct C
{
  int f = [] (auto){ return 1;}(&C::f);
  C ();
};

C::C ()
{
  L2 (1, 1.2f);
  B::L3 (1u, 1.2);
}

template <typename A, typename B> int foo (A&&, B&&) {return 0;}
inline int q = foo ([](){}, [](){});