aboutsummaryrefslogtreecommitdiffhomepage
path: root/failtest/initializer_list_2.cpp
blob: 1996050a781b53bfce99685da2ccbc5481766ad3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include "../Eigen/Core"

#ifdef EIGEN_SHOULD_FAIL_TO_BUILD
#define ROWS Dynamic
#define COLS Dynamic
#else
#define ROWS 3
#define COLS 1
#endif

using namespace Eigen;

int main()
{
  Matrix<int, ROWS, COLS> {1, 2, 3};
}