Розглянемо цей приклад ( звідси ):
#include <type_traits>
#include <iostream>
template <typename U>
struct A {
};
struct B {
template <typename F = int>
A<F> f() { return A<F>{}; }
using default_return_type = decltype(std::declval<B>().f());
};
int main()
{
B::default_return_type x{};
std::cout << std::is_same< B::default_return_type, A<int>>::value;
}
Він компілюється без помилок на gcc9.2, але gcc7.2 та clang 10.0.0 скаржаться на неповне B
завершення. Помилка Клангса:
prog.cc:11:58: error: member access into incomplete type 'B'
using default_return_type = decltype(std::declval<B>().f());
^
prog.cc:7:8: note: definition of 'B' is not complete until the closing '}'
struct B {
^
prog.cc:16:8: error: no type named 'default_return_type' in 'B'
B::default_return_type x{};
~~~^
prog.cc:17:35: error: no member named 'default_return_type' in 'B'
std::cout << std::is_same< B::default_return_type, A<int>>::value;
~~~^
std::declval
нього, це вже не має значення, якщо тип був повним чи ні (і, мабуть, я з цим помиляюся)
B
не є ні повною, ні вважається завершеною в Росії alias-declaration
.
.f()
. Що має сенс; неповний типB
не має членаf
.