From 5a71eb598585f0413ed630f5007f3c0295c7ba60 Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Wed, 18 May 2016 14:03:03 +0200 Subject: Big 1213: add regression unit test. --- test/bug1213_main.cpp | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 test/bug1213_main.cpp (limited to 'test/bug1213_main.cpp') diff --git a/test/bug1213_main.cpp b/test/bug1213_main.cpp new file mode 100644 index 000000000..4802c0003 --- /dev/null +++ b/test/bug1213_main.cpp @@ -0,0 +1,18 @@ + +// This is a regression unit regarding a weird linking issue with gcc. + +#include "bug1213.h" + +int main() +{ + return 0; +} + + +template +bool bug1213_2(const Eigen::Matrix& ) +{ + return true; +} + +template bool bug1213_2(const Eigen::Vector3f&); -- cgit v1.2.3