From 554aa9b31de06cf1d4464b1fe8e5a956091641ba Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Mon, 9 Feb 2015 10:24:07 +0100 Subject: Add failtests for Ref --- failtest/sparse_ref_4.cpp | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 failtest/sparse_ref_4.cpp (limited to 'failtest/sparse_ref_4.cpp') diff --git a/failtest/sparse_ref_4.cpp b/failtest/sparse_ref_4.cpp new file mode 100644 index 000000000..57bb6a1fc --- /dev/null +++ b/failtest/sparse_ref_4.cpp @@ -0,0 +1,15 @@ +#include "../Eigen/Sparse" + +using namespace Eigen; + +void call_ref(Ref > a) {} + +int main() +{ + SparseMatrix A(10,10); +#ifdef EIGEN_SHOULD_FAIL_TO_BUILD + call_ref(A.transpose()); +#else + call_ref(A); +#endif +} -- cgit v1.2.3