blob: c130ba6e4e2a5f2e59dbb8163d58091f30ed7497 [file] [log] [blame]
Austin Schuh189376f2018-12-20 22:11:15 +11001#include "../Eigen/Core"
2
3using namespace Eigen;
4
5int main()
6{
7 VectorXf a(10), b(10);
8 VectorXf const &ac(a);
9#ifdef EIGEN_SHOULD_FAIL_TO_BUILD
10 b.swap(ac);
11#else
12 b.swap(ac.const_cast_derived());
13#endif
14}