중첩 aggregate 시 버그
#include #include #include #include using int_ = int;static class size_2d_{};templateclass size_2d : public size_2d_{public: static constexpr int X = X_; static constexpr int Y = Y_;};template requires std::is_base_of_vusing matrix = std::array, T::Y>;int main(){ matrix, int> mat = {{ //여기서 두 겹을 써야한다. {1,2,3}, {4,5,6}, {7,8,9}, {1,2,3} }}; for (in..