1// Expect 2 errors 2 3void array_decl() { float[123] x; } 4 5void array_ctor() { float[3](1, 2, 3); } 6 7