aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/lambda/lambda-template.C
blob: 66cc7a4e1dff0c9170004636524121eb000aca2c (plain)
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
37
38
39
40
// { dg-do run { target c++11 } }

extern "C" void abort();

template <class T>
auto apply (T t) -> decltype (t())
{
  return t();
}

template <class T>
T f(T t)
{
  T t2 = t;
  if (t != [=]()->T { return t; }())
    abort ();
  if (t != [=] { return t; }())
    abort ();
  if (t != [=] { return t2; }())
    abort ();
  if (t != [&] { return t; }())
    abort ();
  if (t != apply([=]{return t;}))
    abort ();

  int i;
  [&] (int a)                    { return a+i+t; } (0);
  [&] (int a) -> decltype(a)     { return a+i+t; } (0);
  [&] (int a) -> decltype(i)     { return a+i+t; } (0);
  [&] (int a) -> decltype(t)     { return a+i+t; } (0);
  [&] (int a) -> decltype(a+i)   { return a+i+t; } (0);
  [&] (int a) -> decltype(a+t)   { return a+i+t; } (0);
  [&] (int a) -> decltype(i+t)   { return a+i+t; } (0);
  [&] (int a) -> decltype(a+i+t) { return a+i+t; } (0);
}

int main()
{
  f(0xbeef);
}