C++20 概念:GCC 和 Clang 中具有指针类型成员的复合需求表达式的行为差异

Ste*_*pin 5 c++ c++-concepts c++20

考虑以下代码(Godbolt):

#include <iostream>
//#include <concepts>
#include <type_traits>

// Since the latest clang doesn't have <concepts>,
// took this here: https://en.cppreference.com/w/cpp/concepts/same_as
// Using of std::same_as still gives an error in GCC.
namespace detail {
    template< class T, class U >
    concept SameHelper = std::is_same_v<T, U>;
}

template< class T, class U >
concept same_as = detail::SameHelper<T, U> && detail::SameHelper<U, T>;

template<typename T>
concept HasStr = requires(T a) { { a.str } -> same_as<const char*>; };

struct A {
    const char* str = "A";
};

const char* f(HasStr auto has_str) {
    return has_str.str;
}

int main() {
    A a;
    std::cout << f(a) << "\n";
    return 0;
}
Run Code Online (Sandbox Code Playgroud)

Clang 10.0.1 成功编译了这个程序。但是 GCC 10.2 失败了:

<source>: In function 'int main()':
<source>:28:21: error: use of function 'const char* f(auto:11) [with auto:11 = A]' with unsatisfied constraints
   28 |     std::cout << f(a) << "\n";
      |                     ^
<source>:22:13: note: declared here
   22 | const char* f(HasStr auto has_str) {
      |             ^
<source>:22:13: note: constraints not satisfied
<source>: In instantiation of 'const char* f(auto:11) [with auto:11 = A]':
<source>:28:21:   required from here
<source>:16:9:   required for the satisfaction of 'HasStr<auto:11>' [with auto:11 = A]
<source>:16:18:   in requirements with 'T a' [with T = A]
<source>:16:38: note: 'a.str' does not satisfy return-type-requirement, because
   16 | concept HasStr = requires(T a) { { a.str } -> same_as<const char*>; };
      |                                    ~~^~~
<source>:16:36: error: deduced expression type does not satisfy placeholder constraints
   16 | concept HasStr = requires(T a) { { a.str } -> same_as<const char*>; };
      |                                  ~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
<source>:16:36: note: constraints not satisfied
<source>:9:13:   required for the satisfaction of 'SameHelper<T, U>' [with T = const char*&; U = const char*]
<source>:13:9:   required for the satisfaction of 'same_as<const char*&, const char*>'
<source>:9:31: note: the expression 'is_same_v<T, U> [with T = const char*&; U = const char*]' evaluated to 'false'
    9 |     concept SameHelper = std::is_same_v<T, U>;
      |                          ~~~~~^~~~~~~~~~~~~~~
Compiler returned: 1
Run Code Online (Sandbox Code Playgroud)

最有趣的部分是:

<source>:9:31: note: the expression 'is_same_v<T, U> [with T = const char*&; U = const char*]' evaluated to 'false'
Run Code Online (Sandbox Code Playgroud)

据我了解,在复合需求{ a.str }表达式中,有类型const char*&而不是const char*. 那么,为什么会发生这种情况?哪个编译器是正确的?

chr*_*ris 5

通过我对[expr.prim.req.compound]/1 的阅读,GCC 发出错误是正确的:

应满足 decltype((E)) 的类型约束的立即声明的约束 ([temp.param])。

附上一个例子:

requires {
  { E1 } -> C;
  { E2 } -> D<A?, ?, An>;
};
Run Code Online (Sandbox Code Playgroud)

相当于

requires {
  E1; requires C<decltype((E1))>;
  E2; requires D<decltype((E2)), A?, ?, An>;
};
Run Code Online (Sandbox Code Playgroud)

decltype((a.str))确实是const char*&,所以我希望这是传递给same_as.

  • 仅供参考:这是 [clang bug 45088](https://bugs.llvm.org/show_bug.cgi?id=45088)。 (2认同)