blob: 715a2457945157ec5345827b5165e7b1c0749776 (
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
|
// P0847R7
// { dg-do compile { target c++23 } }
// instantiating captureless lambda call operator with unrelated explicit object parameter
void test0()
{
auto f0 = [](this auto self) { return self; };
auto fp0_value = static_cast<int(*)(int) >(&decltype(f0)::operator());
auto fp0_lref = static_cast<int(*)(int&) >(&decltype(f0)::operator());
auto fp0_rref = static_cast<int(*)(int&&) >(&decltype(f0)::operator());
auto fp0_constlref = static_cast<int(*)(int const&) >(&decltype(f0)::operator());
auto fp0_constrref = static_cast<int(*)(int const&&)>(&decltype(f0)::operator());
auto f1 = [](this auto&& self) { return self; };
auto fp1_value = static_cast<int(*)(int) >(&decltype(f1)::operator()); // { dg-error {invalid 'static_cast' from type} }
auto fp1_lref = static_cast<int(*)(int&) >(&decltype(f1)::operator());
auto fp1_rref = static_cast<int(*)(int&&) >(&decltype(f1)::operator());
auto fp1_constlref = static_cast<int(*)(int const&) >(&decltype(f1)::operator());
auto fp1_constrref = static_cast<int(*)(int const&&)>(&decltype(f1)::operator());
}
void test1()
{
auto f0 = [](this auto self) { return self; };
int (*fp0_value)(int) = &decltype(f0)::operator();
int (*fp0_lref)(int&) = &decltype(f0)::operator();
int (*fp0_rref)(int&&) = &decltype(f0)::operator();
int (*fp0_constlref)(int const&) = &decltype(f0)::operator();
int (*fp0_constrref)(int const&&) = &decltype(f0)::operator();
auto f1 = [](this auto&& self) { return self; };
int (*fp1_value)(int) = &decltype(f1)::operator(); // { dg-error {no matches converting function} }
int (*fp1_lref)(int&) = &decltype(f1)::operator();
int (*fp1_rref)(int&&) = &decltype(f1)::operator();
int (*fp1_constlref)(int const&) = &decltype(f1)::operator();
int (*fp1_constrref)(int const&&) = &decltype(f1)::operator();
}
|