Files
eigen/test/bug1213_main.cpp
2026-05-04 00:36:12 +00:00

16 lines
363 B
C++

// SPDX-FileCopyrightText: The Eigen Authors
// SPDX-License-Identifier: MPL-2.0
// This is a regression unit regarding an unusual linking issue with GCC.
#include "bug1213.h"
int main() { return 0; }
template <typename T, int dim>
bool bug1213_2(const Eigen::Matrix<T, dim, 1>&) {
return true;
}
template bool bug1213_2<float, 3>(const Eigen::Vector3f&);