aboutsummaryrefslogtreecommitdiffhomepage
path: root/failtest/ternary_1.cpp
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2015-09-09 11:38:25 +0200
committerGravatar Gael Guennebaud <g.gael@free.fr>2015-09-09 11:38:25 +0200
commit680d318352d0c740992a7e1d6ee5bac766487bbf (patch)
treeb662ab8ff9503c513869162a50b8d4f8657a4b91 /failtest/ternary_1.cpp
parent84e0c27b613d5ab70918272027e807e64272d244 (diff)
Add unit tests for bug #981: valid and invalid usage of ternary operator
Diffstat (limited to 'failtest/ternary_1.cpp')
-rw-r--r--failtest/ternary_1.cpp13
1 files changed, 13 insertions, 0 deletions
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
+}