diff --git a/clang/test/CXX/expr/expr.const/p8-2a.cpp b/clang/test/CXX/expr/expr.const/p8-2a.cpp --- a/clang/test/CXX/expr/expr.const/p8-2a.cpp +++ b/clang/test/CXX/expr/expr.const/p8-2a.cpp @@ -2,7 +2,7 @@ // expected-no-diagnostics -namespace P1073R3 { +namespace P1937R2 { struct N { constexpr N() {} N(N const&) = delete; @@ -11,12 +11,22 @@ template constexpr void bad_assert_copyable() { T t; T t2 = t; } using ineffective = decltype(bad_assert_copyable()); -// bad_assert_copyable is not needed for constant evaluation -// (and thus not instantiated) template consteval void assert_copyable() { T t; T t2 = t; } +// Prior to P1937R2 consteval functions were evaluated even in otherwise +// unevaluated context, now this is well-formed. using check = decltype(assert_copyable()); -// FIXME: this should give an error because assert_copyable is instantiated -// (because it is needed for constant evaluation), but the attempt to copy t is -// ill-formed. -} // namespace P1073R3 + +template +__add_rvalue_reference(T) declval(); + +constexpr auto add1(auto lhs, auto rhs) { + return lhs + rhs; +} +using T = decltype(add1(declval(), declval())); + +consteval auto add2(auto lhs, auto rhs) { + return lhs + rhs; +} +using T = decltype(add2(declval(), declval())); +} // namespace P1937R2