Skip to content

Commit a06f0e7

Browse files
committed
CI Revert UFCS test restore for further investigation
1 parent c6617a6 commit a06f0e7

File tree

2 files changed

+10
-7
lines changed

2 files changed

+10
-7
lines changed

regression-tests/mixed-bugfix-for-ufcs-non-local.cpp2

+2-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,8 @@ d: _ == t<o.f()>(); // Fails on Clang 12 (lambda in unevaluated context).
3838

3939
u: @struct type = {
4040
b: bool == o.f();
41-
c: bool == :(forward x: decltype(o.f())) = x;(true); // Fails on Clang 12 (lambda in unevaluated context).
41+
// UFCS used in the decltype in the line below causes all compilers to report error/crash
42+
c: bool == :(forward x: decltype(f(o))) = x;(true); // Fails on Clang 12 (lambda in unevaluated context).
4243
g: (s, sz) pre(s.sz() != 0) = { }
4344
}
4445

regression-tests/test-results/mixed-bugfix-for-ufcs-non-local.cpp

+8-6
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ namespace ns {
1414
class u;
1515

1616

17-
#line 45 "mixed-bugfix-for-ufcs-non-local.cpp2"
17+
#line 46 "mixed-bugfix-for-ufcs-non-local.cpp2"
1818
}
1919

2020

@@ -62,6 +62,7 @@ auto inline constexpr d{ t<CPP2_UFCS_NONLOCAL(f)(o)>() };// Fails on Clang 12 (l
6262

6363
class u {
6464
public: static const bool b;
65+
// UFCS used in the decltype in the line below causes all compilers to report error/crash
6566
public: static const bool c;
6667
public: static auto g(auto const& s, auto const& sz) -> void;
6768
};
@@ -95,16 +96,17 @@ auto g() -> void{
9596

9697
#line 40 "mixed-bugfix-for-ufcs-non-local.cpp2"
9798
inline CPP2_CONSTEXPR bool u::b{ CPP2_UFCS_NONLOCAL(f)(o) };
99+
98100
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"
102104
auto u::g(auto const& s, auto const& sz) -> void{
103105
if (cpp2::cpp2_default.is_active() && !(CPP2_UFCS(sz)(s) != 0) ) { cpp2::cpp2_default.report_violation(""); }}
104106

105-
#line 45 "mixed-bugfix-for-ufcs-non-local.cpp2"
107+
#line 46 "mixed-bugfix-for-ufcs-non-local.cpp2"
106108
}
107109

108-
#line 47 "mixed-bugfix-for-ufcs-non-local.cpp2"
110+
#line 48 "mixed-bugfix-for-ufcs-non-local.cpp2"
109111
auto main() -> int{}
110112

0 commit comments

Comments
 (0)