#include "array.hpp" struct Test { Test(int i) : i(i) { } int i; }; int main() { Array t(10, Test(42)); }