int main()
{
struct C {
C(const C&) = delete;
C& operator= (const C&) = delete;
C(C&&) {}
C& operator=(C&&) { return *this; }
};
static_assert(std::is_copy_constructible<C>::value &&
std::is_copy_constructible<C>::value,
"");
}
为什么在VS2013中可以成功编译上面的代码?