From 680d318352d0c740992a7e1d6ee5bac766487bbf Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Wed, 9 Sep 2015 11:38:25 +0200 Subject: Add unit tests for bug #981: valid and invalid usage of ternary operator --- failtest/ternary_1.cpp | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 failtest/ternary_1.cpp (limited to 'failtest/ternary_1.cpp') diff --git a/failtest/ternary_1.cpp b/failtest/ternary_1.cpp new file mode 100644 index 000000000..b40bcb0cc --- /dev/null +++ b/failtest/ternary_1.cpp @@ -0,0 +1,13 @@ +#include "../Eigen/Core" + +using namespace Eigen; + +int main(int argc,char **) +{ + VectorXf a(10), b(10); +#ifdef EIGEN_SHOULD_FAIL_TO_BUILD + b = argc>1 ? 2*a : -a; +#else + b = argc>1 ? 2*a : VectorXf(-a); +#endif +} -- cgit v1.2.3