This feature enables array initializer syntax to be used with stackalloc arrays: ```csharp stackalloc int[3] // currently allowed stackalloc int[3] { 1, 2, 3 } stackalloc int[] { 1, 2, 3 } stackalloc[] { 1, 2, 3 } ``` The proposal for this feature is [here](https://github.com/dotnet/csharplang/blob/master/proposals/csharp-7.3/stackalloc-array-initializers.md)
This feature enables array initializer syntax to be used with stackalloc arrays:
The proposal for this feature is here