@@ -14,7 +14,7 @@ namespace ns {
14
14
class u ;
15
15
16
16
17
- #line 45 "mixed-bugfix-for-ufcs-non-local.cpp2"
17
+ #line 46 "mixed-bugfix-for-ufcs-non-local.cpp2"
18
18
}
19
19
20
20
@@ -62,6 +62,7 @@ auto inline constexpr d{ t<CPP2_UFCS_NONLOCAL(f)(o)>() };// Fails on Clang 12 (l
62
62
63
63
class u {
64
64
public: static const bool b;
65
+ // UFCS used in the decltype in the line below causes all compilers to report error/crash
65
66
public: static const bool c;
66
67
public: static auto g (auto const & s, auto const & sz) -> void;
67
68
};
@@ -95,16 +96,17 @@ auto g() -> void{
95
96
96
97
#line 40 "mixed-bugfix-for-ufcs-non-local.cpp2"
97
98
inline CPP2_CONSTEXPR bool u::b{ CPP2_UFCS_NONLOCAL (f)(o) };
99
+
98
100
inline CPP2_CONSTEXPR bool u::c{ [](auto && x) -> decltype (auto )// Fails on Clang 12 (lambda in unevaluated context).
99
- #line 42 "mixed-bugfix-for-ufcs-non-local.cpp2"
100
- requires (std::is_convertible_v<CPP2_TYPEOF (x), std::add_const_t <decltype (CPP2_UFCS_NONLOCAL (f) (o))>&>) { return CPP2_FORWARD (x); }(true ) };
101
- #line 42 "mixed-bugfix-for-ufcs-non-local.cpp2"
101
+ #line 43 "mixed-bugfix-for-ufcs-non-local.cpp2"
102
+ requires (std::is_convertible_v<CPP2_TYPEOF (x), std::add_const_t <decltype (f (o))>&>) { return CPP2_FORWARD (x); }(true ) };
103
+ #line 43 "mixed-bugfix-for-ufcs-non-local.cpp2"
102
104
auto u::g (auto const & s, auto const & sz) -> void{
103
105
if (cpp2::cpp2_default.is_active () && !(CPP2_UFCS (sz)(s) != 0 ) ) { cpp2::cpp2_default.report_violation (" " ); }}
104
106
105
- #line 45 "mixed-bugfix-for-ufcs-non-local.cpp2"
107
+ #line 46 "mixed-bugfix-for-ufcs-non-local.cpp2"
106
108
}
107
109
108
- #line 47 "mixed-bugfix-for-ufcs-non-local.cpp2"
110
+ #line 48 "mixed-bugfix-for-ufcs-non-local.cpp2"
109
111
auto main () -> int{}
110
112
0 commit comments