2
なぜ次のコードはコンパイラをクラッシュさせますか?クラスクラッシュコンパイラのMSVC 2010テンプレートマップ
#include <iostream>
#include <string>
#include <map>
class test{
public:
template <typename T>
std::map<std::string, T> stuff;
};
int main(int argc, char* argv[])
{
test peanuts;
return 0;
}
コンパイラにはバグがありますか?