aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp1y/lambda-deduce-mult.C
blob: 478d6a50bab423f170ee20ad29e255ee5af6ea25 (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
// Testcase for an extension to allow return type deduction when the lambda
// contains more than just a single return-statement.

// { dg-do run { target c++1y } }

bool b;
template <class T>
T f (T t)
{
  return [=] {
    auto i = t+1;
    if (b)
      return i+1;
    else
      return i+1;
  }();
}

int main()
{
  // Pointless, but well-formed.
  [] { return 1; return 2; }();

  if (f(1) != 3)
    return 1;
}