You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
217 B

#include "../Eigen/Core"
using namespace Eigen;
int main()
{
VectorXf a(10), b(10);
#ifdef EIGEN_SHOULD_FAIL_TO_BUILD
const DenseBase<VectorXf> &ac(a);
#else
DenseBase<VectorXf> &ac(a);
#endif
b.swap(ac);
}