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_4.cpp Normal file
View File

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