在VS2013中输入特征

时间:2014-06-06 15:12:04

标签: c++ visual-c++ c++11

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中可以成功编译上面的代码?