Considera questo esempio (proveniente da qui ):
#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;
}
Si compila senza errori su gcc9.2 ma gcc7.2 e clang 10.0.0 si lamentano di B
non essere completi. L'errore di Clangs è:
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
esso non ha più importanza se il tipo era completo o meno (e suppongo di sbagliarmi)
B
non è né completo né considerato completo inalias-declaration
.
.f()
. Questo ha senso; il tipo incompletoB
non ha un membrof
.