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_3.cpp | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 failtest/sparse_ref_3.cpp (limited to 'failtest/sparse_ref_3.cpp') diff --git a/failtest/sparse_ref_3.cpp b/failtest/sparse_ref_3.cpp new file mode 100644 index 000000000..a9949b552 --- /dev/null +++ b/failtest/sparse_ref_3.cpp @@ -0,0 +1,15 @@ +#include "../Eigen/Sparse" + +using namespace Eigen; + +#ifdef EIGEN_SHOULD_FAIL_TO_BUILD +void call_ref(Ref > a) { } +#else +void call_ref(const Ref > &a) { } +#endif + +int main() +{ + SparseMatrix a(10,10); + call_ref(a+a); +} -- cgit v1.2.3