Add failtests for Ref<SparseMatrix>

This commit is contained in:
Gael Guennebaud
2015-02-09 10:24:07 +01:00
parent 3af29caae8
commit 554aa9b31d
6 changed files with 85 additions and 0 deletions

15
failtest/sparse_ref_3.cpp Normal file
View File

@@ -0,0 +1,15 @@
#include "../Eigen/Sparse"
using namespace Eigen;
#ifdef EIGEN_SHOULD_FAIL_TO_BUILD
void call_ref(Ref<SparseMatrix<float> > a) { }
#else
void call_ref(const Ref<const SparseMatrix<float> > &a) { }
#endif
int main()
{
SparseMatrix<float> a(10,10);
call_ref(a+a);
}