blob: 4802c00032f18f39e866cc59711b61036012bcdd [file] [log] [blame]
Austin Schuh189376f2018-12-20 22:11:15 +11001
2// This is a regression unit regarding a weird linking issue with gcc.
3
4#include "bug1213.h"
5
6int main()
7{
8 return 0;
9}
10
11
12template<typename T, int dim>
13bool bug1213_2(const Eigen::Matrix<T,dim,1>& )
14{
15 return true;
16}
17
18template bool bug1213_2<float,3>(const Eigen::Vector3f&);