You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
// 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);
|