変数テンプレートの宣言で auto を使用できるかどうかを調べに行きました。
template <typename T>
auto F = T{};
結構ですが、使用しようとするとすぐにクラップスが鳴ります。
int f = F<int>; // error: cannot initialize a variable of type 'int' with an lvalue of type 'auto'
auto f = F<int>; // Stacktrace
decltype(F<int>) f = F<int>; // StackFace
std::cout << std::is_same<int, decltype(F<int>)>::value; // false
std::cout << typeid(decltype(F<int>)).name(); // Stacktrace
std::cout << std::is_same<decltype(F<int>), decltype(F<int>)>::value; // true
,の任意の組み合わせはdecltype(auto)
、それが左辺値auto
であると言われていても機能しません。auto
int f = static_cast<int>(F<int>); // error: static_cast from 'auto' to 'int' is not allowed
私は前にこのように自動行動を見たことがありません. 変数テンプレートのためですか、それともclangがautoを扱う方法のためですか?