blob: 21c703d059eb70155fde6e9da0de6ccbc4875ca0 [file] [log] [blame]
// Expect 3 errors
float noElements[2] = float[2]();
float notEnoughElements[2] = float[2](1);
float rightNumberOfElements[2] = float[2](1, 2);
float tooManyElements[2] = float[2](1, 2, 3);