aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp1y/lambda-generic-xcfun.C
blob: fbd74220d40a7b507925f09239f66e448789cbb9 (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
// Explicit generic lambda conversion to function ptr test from N3690 5.1.2.6
// { dg-do compile { target c++1y } }
// { dg-options "" }

void f1(int (*)(int)) { }
void f2(char (*)(int)) { }
void g(int (*)(int)) { } // #1
void g(char (*)(char)) { } // #2
void h(int (*)(int)) { } // #3
void h(char (*)(int)) { } // #4

int main()
{
  auto glambda = [] <typename T> (T a) { return a; };
  int (*fp)(int) = glambda;
  f1(glambda); // OK
  f2(glambda); // { dg-error "invalid user-defined conversion" }
  g(glambda); // { dg-error "ambiguous" }
  h(glambda); // OK: calls #3 since it is convertible from ID
  int& (*fpi)(int*) = [] <typename T> (T* a) -> auto& { return *a; }; // OK

  auto GL = [] <typename T> (T a) { return a; };
  int (*GL_int)(int) = GL; // OK: through conversion function template
  GL_int(3);
}