I can create constexpr std::array:
constexpr
constexpr std::array values {1,2,3,4,5};
It works fine. But I cannot create
AFAIK The initlializer_list constructor of std::vector<> is not declared constexpr.
initlializer_list
std::vector<>