1// Expect 3 errors
2
3float noElements[2]            = float[2]();
4float notEnoughElements[2]     = float[2](1);
5float rightNumberOfElements[2] = float[2](1, 2);
6float tooManyElements[2]       = float[2](1, 2, 3);
7