2014-02-15 69 views
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 

我從來沒有見過汽車這樣行動之前。是因爲可變模板還是因爲鏗鏘對待汽車?

+2

我認爲它可能還沒有完全實現。 –

+3

「// Stacktrace」每當你得到這些信息,「clang:note:diagnostic msg:PLEASE向http://llvm.org/bugs/提交一個錯誤報告,幷包括崩潰回溯,預處理源和相關的運行腳本「。包含在輸出中。請這樣做,這顯然是叮噹聲中的一個錯誤,叮噹開發人員比SO上的人更有可能提供有用的迴應。 – hvd

回答

1

這似乎是在最新版本clang;把它放到一個文件中,然後打電話給

clang++ -std=c++1y test.cpp 

給我沒有錯誤。

[email protected]:~$ clang++ -v 
clang version 3.5 (trunk 201469) 
Target: x86_64-apple-darwin13.0.0 
Thread model: posix 
+0

我今天也得到了一個最新版本的bug:clang版本3.5(202594)目標:x86_64-pc-win32線程模型:posix – galop1n