4
我去看看你是否可以在變量模板聲明中使用auto。Clang汽車變量模板bug
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
我從來沒有見過汽車這樣行動之前。是因爲可變模板還是因爲鏗鏘對待汽車?
我認爲它可能還沒有完全實現。 –
「// Stacktrace」每當你得到這些信息,「clang:note:diagnostic msg:PLEASE向http://llvm.org/bugs/提交一個錯誤報告,幷包括崩潰回溯,預處理源和相關的運行腳本「。包含在輸出中。請這樣做,這顯然是叮噹聲中的一個錯誤,叮噹開發人員比SO上的人更有可能提供有用的迴應。 – hvd