私のコンパイラは VC++ 2013 RC です。
#include <type_traits>
struct A
{
A() = default;
A(const A&) = delete;
};
int main()
{
auto b = std::is_copy_constructible<A>::value;
// Now b is TRUE! Rather than false.
}
これは VC++ 2013 RC の大きなバグですか?
アップデート:
ideoneは正しい結果を示します。