#include <array>

class foo
{
public:
    foo(std::array<std::array<int, 2>, 3> arr) { }
};

int main()
{
    foo f({{1, 2}, {3, 4}, {5, 6}});
}