struct Test { double some_double; uint[] array; } const Test[] tests = { { 2.5, {1, 2, 3} }, { 3.5, {2, 3} } }; int main() {return 0; }