Preface:
I've found nothing around about this issue. The only thing I've found is people dynamically allocating an array without providing any information about the size of said array, like this int* p = new int[];
My issue is different:
float arr[]{ 1,2,3 };
float* p = new float[]{1, 2, 3};
The first line compiles fine, the second one doesn't:
Error C3078 Array size must be specified in new expressions
I wonder: why didn't the compiler evaluate the array size from the list-initialization like it did in the first case?